All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evasion.AbstractEJBModule Maven / Gradle / Ivy

The newest version!
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy