/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/ |
H A D | EjbAsyncTask.java | 61 private EjbInvocation inv; field in class:EjbAsyncTask 67 public void initialize(EjbInvocation inv) { argument 68 this.inv = inv; 69 this.ejbFutureTask = inv.getEjbFutureTask(); 77 return inv.getInvId(); 85 return inv; 91 BaseContainer container = (BaseContainer) inv.container; 99 container.preInvoke(inv); 101 returnValue = (V) container.intercept(inv); [all...] |
H A D | WebServiceInvocationHandler.java | 113 EjbInvocation inv = null; 117 inv = (EjbInvocation) invManager_.getCurrentInvocation(); 119 inv.ejbObject = this; 128 inv.method = method; 129 inv.clientInterface = serviceEndpointIntfClass_; 131 inv.invocationInfo = (InvocationInfo) 132 invocationInfoMap_.get(inv.method); 134 if( inv.invocationInfo == null ) { 137 "method " + inv.method); 140 inv [all...] |
H A D | EjbEndpointFacadeImpl.java | 89 EjbInvocation inv = container_.createEjbInvocation(); 92 inv.isWebService = true; 93 inv.container = container_; 94 inv.transactionAttribute = Container.TX_NOT_INITIALIZED; 100 inv.securityPermissions = Container.SEC_NOT_INITIALIZED; 105 // inv.setContextData(wsCtxt); 109 invManager_.preInvoke(inv); 111 return inv; 116 public void endInvocation(ComponentInvocation inv) { argument 119 EjbInvocation ejbInv = (EjbInvocation) inv; [all...] |
H A D | EJBLocalHomeInvocationHandler.java | 204 EjbInvocation inv = ((BaseContainer) getContainer()).createEjbInvocation(); 206 inv.isLocal = true; 207 inv.isHome = true; 208 inv.method = method; 210 inv.clientInterface = localHomeIntfClass_; 214 inv.transactionAttribute = invInfo.txAttr; 215 inv.securityPermissions = invInfo.securityPermissions; 216 inv.invocationInfo = invInfo; 219 inv.ejbObject = (EJBLocalRemoteObject) localObjectImpl; 224 container.preInvoke(inv); [all...] |
H A D | EJBHomeInvocationHandler.java | 260 EjbInvocation inv = ((BaseContainer) getContainer()).createEjbInvocation(); 263 inv.isRemote = true; 264 inv.method = method; 265 inv.isHome = true; 267 inv.clientInterface = homeIntfClass_; 272 inv.transactionAttribute = invInfo.txAttr; 273 inv.securityPermissions = invInfo.securityPermissions; 274 inv.invocationInfo = invInfo; 277 inv.ejbObject = (EJBLocalRemoteObject) ejbObjectImpl; 284 container.preInvoke(inv); [all...] |
H A D | EJBLocalObjectInvocationHandler.java | 193 EjbInvocation inv = container.createEjbInvocation(); 195 inv.isLocal = true; 196 inv.isBusinessInterface = !isLocalHomeView(); 197 inv.isHome = false; 198 inv.ejbObject = this; 199 inv.method = method; 200 inv.methodParams = args; 202 inv.clientInterface = clientInterface; 206 inv.transactionAttribute = invInfo.txAttr; 207 inv [all...] |
H A D | EJBObjectInvocationHandler.java | 186 EjbInvocation inv = container.createEjbInvocation(); 188 inv.isRemote = true; 189 inv.isHome = false; 190 inv.isBusinessInterface = !isRemoteHomeView(); 191 inv.ejbObject = this; 192 inv.method = method; 194 inv.clientInterface = clientInterface; 198 inv.transactionAttribute = invInfo.txAttr; 199 inv.securityPermissions = invInfo.securityPermissions; 200 inv [all...] |
H A D | CommitCEntityContainer.java | 69 protected EntityContextImpl getReadyEJB(EjbInvocation inv) { argument 70 Object primaryKey = inv.ejbObject.getKey(); 71 return activateEJBFromPool(primaryKey, inv);
|
H A D | EjbAsyncInvocationManager.java | 68 public Future createLocalFuture(EjbInvocation inv) { argument 69 return createFuture(inv); 72 public Future createRemoteFuture(EjbInvocation inv, Container container, GenericEJBHome ejbHome) { argument 77 EjbFutureTask localFutureTask = (EjbFutureTask) createFuture(inv); 79 EjbRemoteFutureTask returnFuture = new EjbRemoteFutureTask(inv.getInvId(), ejbHome); 88 Method m = inv.getMethod(); 90 remoteTaskMap.put(inv.getInvId(), localFutureTask); 96 private Future createFuture(EjbInvocation inv) { argument 103 inv.setInvId(invId); 104 inv 114 submit(EjbInvocation inv) argument [all...] |
H A D | BaseContainer.java | 841 public void checkUserTransactionLookup(ComponentInvocation inv) argument 997 public boolean userTransactionMethodsAllowed(ComponentInvocation inv) { argument 1818 private boolean doPreInvokeAuthorization(EjbInvocation inv) { argument 1822 boolean skipPreInvokeAuth = inv.isTimerCallback || 1823 ( inv.isLocal && 1824 inv.method.equals(ejbIntfMethods[EJBLocalObject_remove]) && 1825 !((EJBLocalObjectImpl)inv.ejbObject).isLocalHomeView() ); 1839 * container.preInvoke(inv); 1840 * returnValue = container.intercept(inv); 1850 public void preInvoke(EjbInvocation inv) { argument 1984 webServicePostInvoke(EjbInvocation inv) argument 1993 postInvoke(EjbInvocation inv) argument 1997 postInvoke(EjbInvocation inv, boolean doTxProcessing) argument 2231 getInvocationInfo(EjbInvocation inv) argument 2237 mapRemoteException(EjbInvocation inv) argument 2334 authorize(EjbInvocation inv) argument 2544 getContext(EjbInvocation inv) argument 2552 _getContext(EjbInvocation inv) argument 2556 releaseContext(EjbInvocation inv) argument 2625 getJaccEjb(EjbInvocation inv) argument 2785 getTxAttr(EjbInvocation inv) argument 3949 postCreate(EjbInvocation inv, Object primaryKey) argument 3956 postFind(EjbInvocation inv, Object primaryKeys, Object[] findParams) argument 4109 prepareEjbTimeoutParams(EjbInvocation inv, RuntimeTimerState timerState, EJBTimerService timerService) argument 4171 invokeTargetBeanMethod(Method beanClassMethod, EjbInvocation inv, Object target, Object[] params, com.sun.enterprise.security.SecurityManager mgr) argument 4197 doTimerInvocationInit(EjbInvocation inv, RuntimeTimerState timerState ) argument 4484 preInvokeTx(EjbInvocation inv) argument 4644 checkUnfinishedTx(Transaction prevTx, EjbInvocation inv) argument 4660 startNewTx(Transaction prevTx, EjbInvocation inv) argument 4697 useClientTx(Transaction prevTx, EjbInvocation inv) argument 4826 postInvokeTx(EjbInvocation inv) argument 5194 preInvokeNoTx(EjbInvocation inv) argument 5199 postInvokeNoTx(EjbInvocation inv) argument 5335 intercept(EjbInvocation inv) argument 5353 __intercept(EjbInvocation inv) argument 5383 invokeBeanMethod(EjbInvocation inv) argument [all...] |
H A D | AbstractSessionContextImpl.java | 130 ComponentInvocation inv = invManager.getCurrentInvocation(); 132 if ((inv != null) && isWebServiceInvocation(inv)) { 133 return ((EjbInvocation) inv).messageContext; 215 ComponentInvocation inv = EjbContainerUtilImpl.getInstance().getCurrentInvocation(); 217 if ((inv != null) && (inv instanceof EjbInvocation)) { 218 EjbInvocation invocation = (EjbInvocation) inv; 245 ComponentInvocation inv = EjbContainerUtilImpl.getInstance().getCurrentInvocation(); 247 if ((inv ! 291 isWebServiceInvocation(ComponentInvocation inv) argument [all...] |
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/authorize/ |
H A D | EJBPolicyContextDelegate.java | 54 public Object getEnterpriseBean(ComponentInvocation inv) { argument 55 if (inv instanceof EJBInvocation) { 56 return ((EJBInvocation)inv).getJaccEjb(); 61 public Object getEJbArguments(ComponentInvocation inv) { argument 62 if (inv instanceof EJBInvocation) { 63 EJBInvocation eInv = (EJBInvocation) inv; 73 public Object getSOAPMessage(ComponentInvocation inv) { argument 74 if (inv instanceof EJBInvocation) { 75 EJBInvocation eInv = (EJBInvocation) inv; 85 public void setSOAPMessage(Object message, ComponentInvocation inv) { argument 94 authorize(ComponentInvocation inv, Method m) argument [all...] |
H A D | HandlerData.java | 61 private ComponentInvocation inv = null; field in class:HandlerData 77 public void setInvocation(ComponentInvocation inv) { argument 78 this.inv = inv; 90 if (inv == null) { 95 return (ejbDelegate != null) ? ejbDelegate.getSOAPMessage(inv) : null; 97 return (ejbDelegate != null) ? ejbDelegate.getEnterpriseBean(inv) : null; 99 return (ejbDelegate != null) ? ejbDelegate.getEJbArguments(inv) : null; 106 inv = null;
|
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | AdapterInvocationInfo.java | 56 * This will store information about the inv which needs to 59 private ComponentInvocation inv; field in class:AdapterInvocationInfo 77 public void setInv(ComponentInvocation inv) { argument 78 this.inv = inv; 90 return inv;
|
H A D | EjbContainerPostHandler.java | 78 EJBInvocation inv = null; 82 inv = (EJBInvocation) invManager.getCurrentInvocation(); 83 Method webServiceMethodInPreHandler = inv.getWebServiceMethod(); 91 (com.sun.xml.rpc.spi.runtime.Tie)inv.getWebServiceTie(), context);
|
H A D | Ejb2RuntimeEndpointInfo.java | 96 ComponentInvocation inv = container.startInvocation(); 98 aInfo.setInv(inv); 108 ((EJBInvocation)inv).setWebServiceTie(tieInstance); 119 public void releaseImplementor(ComponentInvocation inv) { argument 120 container.endInvocation(inv);
|
H A D | EjbContainerPreHandler.java | 81 EJBInvocation inv = null; 86 inv = (EJBInvocation) invManager.getCurrentInvocation(); 88 (com.sun.xml.rpc.spi.runtime.Tie)inv.getWebServiceTie(), context); 89 inv.setWebServiceMethod(method); 90 if ( !inv.authorizeWebService(method) ) {
|
H A D | ServletPreHandler.java | 82 WebComponentInvocation inv = null; 87 inv = (WebComponentInvocation) invManager.getCurrentInvocation(); 89 (com.sun.xml.rpc.spi.runtime.Tie) inv.getWebServiceTie(); 94 inv.setWebServiceTie(tie); 96 inv.setWebServiceMethod(wsUtil.getInvMethod(tie, context));
|
/glassfish-3.1.2/transaction/jta/src/main/java/com/sun/enterprise/transaction/ |
H A D | UserTransactionImpl.java | 140 private void checkUserTransactionMethodAccess(ComponentInvocation inv) argument 143 (TransactionOperationsManager)inv.getTransactionOperationsManager(); 160 ComponentInvocation inv = invocationManager.getCurrentInvocation(); 161 if (inv != null) { 162 checkUserTransactionMethodAccess(inv); 174 if (inv != null) { 176 (TransactionOperationsManager)inv.getTransactionOperationsManager(); 180 inv.setTransaction(transactionManager.getTransaction()); 201 ComponentInvocation inv = invocationManager.getCurrentInvocation(); 202 if (inv ! [all...] |
/glassfish-3.1.2/ejb/ejb-internal-api/src/main/java/org/glassfish/ejb/api/ |
H A D | EjbEndpointFacade.java | 83 * @argument inv The ComponentInvocation returned from the original 86 public void endInvocation(ComponentInvocation inv); argument
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/ |
H A D | Container.java | 124 * context class loader. Called by getTargetObject() and web service inv 130 * class loader. Called by releaseTargetObject() and web service inv 200 void preInvoke(EjbInvocation inv); argument 206 void postInvoke(EjbInvocation inv); argument 211 void webServicePostInvoke(EjbInvocation inv); argument 219 void postCreate(EjbInvocation inv, Object primaryKey) argument 229 Object postFind(EjbInvocation inv, Object primaryKeys, Object[] findParams) argument 264 boolean userTransactionMethodsAllowed(ComponentInvocation inv); argument 337 Object getJaccEjb(EjbInvocation inv); argument 342 boolean authorize(EjbInvocation inv); argument [all...] |
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/invocation/ |
H A D | InvocationManagerImpl.java | 106 ComponentInvocation inv = new ComponentInvocation(); 107 inv.componentId = parentInv.getComponentId(); 108 inv.setComponentInvocationType(parentInv.getInvocationType()); 109 inv.instance = null; 110 inv.container = parentInv.getContainerContext(); 111 inv.transaction = null; 112 result.add(inv); 131 public <T extends ComponentInvocation> void preInvoke(T inv) argument 135 if (inv.getInvocationType() == ComponentInvocationType.SERVICE_STARTUP) { 144 ComponentInvocationType invType = inv 178 postInvoke(T inv) argument [all...] |
H A D | InvocationManager.java | 60 * @param inv the Invocation object 62 public <T extends ComponentInvocation> void preInvoke(T inv) throws InvocationException; argument 69 * @param inv the Invocation object 71 public <T extends ComponentInvocation> void postInvoke(T inv) throws InvocationException; argument
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/ |
H A D | SecurityManager.java | 62 public boolean authorize(ComponentInvocation inv); argument 82 public void preInvoke (ComponentInvocation inv); argument 90 public void postInvoke (ComponentInvocation inv); argument
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/rm/ |
H A D | ResourceManagerImpl.java | 78 ComponentInvocation inv = invmgr.getCurrentInvocation(); 79 if (inv == null) { 86 return (Transaction) inv.getTransaction(); 97 ComponentInvocation inv = invmgr.getCurrentInvocation(); 98 if (inv == null) { 102 return inv.getInstance(); 130 ComponentInvocation inv = invmgr.getCurrentInvocation(); 132 if (inv == null) { 146 tran = (Transaction) inv.getTransaction(); 160 if(inv ! [all...] |