![JAR search and dependency download from the Maven repository](/logo.png)
com.evasion.AbstractEJBModule Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion;
import java.security.Principal;
import javax.annotation.Resource;
import javax.ejb.SessionContext;
/**
*
* @author sglon
*/
public class AbstractEJBModule extends AbstractModule {
@Resource
private SessionContext context;
@Override
public Principal getPrincipal() {
return context.getCallerPrincipal();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy