Package com.sun.enterprise

Examples of com.sun.enterprise.SecurityManager.postInvoke()


      // if ejb call EJBSecurityManager, for servlet call RealmAdapter
      if (invType == inv.EJB_INVOCATION){
    SecurityManager sm =
        ((Container)inv.getContainerContext()).getSecurityManager();
   
    sm.postInvoke(inv);
      } else if (invType == inv.SERVLET_INVOCATION){
    Realm rlm = ((Context)inv.getContainerContext()).getRealm();
    if (rlm instanceof RealmAdapter) {
        RealmAdapter rad = (RealmAdapter) rlm;
        rad.postSetRunAsIdentity (inv);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.