Searched defs:inv (Results 1 - 25 of 41) sorted by relevance

12

/glassfish-3.1.2/ejb/ejb-internal-api/src/main/java/org/glassfish/ejb/api/
H A DEjbEndpointFacade.java83 * @argument inv The ComponentInvocation returned from the original
86 public void endInvocation(ComponentInvocation inv); argument
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/invocation/
H A DInvocationManager.java60 * @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
H A DInvocationManagerImpl.java106 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...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DBMCSingletonContainer.java67 protected ComponentContext _getContext(EjbInvocation inv) { argument
79 public void releaseContext(EjbInvocation inv) { argument
H A DCMCSingletonContainer.java96 * container.preInvoke(inv);
97 * returnValue = container.intercept(inv);
116 protected ComponentContext _getContext(EjbInvocation inv) { argument
118 InvocationInfo invInfo = inv.invocationInfo;
167 inv.setCMCLock(theLock);
177 * @see com.sun.ejb.containers.CMCSingletonContainer#_getContext(EjbInvocation inv)
178 * @param inv The current EjbInvocation that was passed to _getContext()
180 public void releaseContext(EjbInvocation inv) { argument
181 Lock theLock = inv.getCMCLock();
H A DEjbAsyncTask.java61 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 DEjbEndpointFacadeImpl.java89 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 DCommitCEntityContainer.java69 protected EntityContextImpl getReadyEJB(EjbInvocation inv) { argument
70 Object primaryKey = inv.ejbObject.getKey();
71 return activateEJBFromPool(primaryKey, inv);
H A DAbstractSessionContextImpl.java130 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...]
H A DEjbAsyncInvocationManager.java68 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...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/security/
H A DEJBSecurityUtil.java65 * @param inv, the current invocation
75 public static Object invoke(Method beanClassMethod, EjbInvocation inv, Object o, Object[] oa, argument
88 if ((inv.isLocal && ejbSecMgr.getUsesCallerIdentity()) ||
116 * @param Invocation inv, the current invocation object
123 public static Object runMethod(Method beanClassMethod, EjbInvocation inv, Object o, Object[] oa, argument
141 if((inv.isLocal && mgr.getUsesCallerIdentity()) ||
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/authorize/
H A DEJBPolicyContextDelegate.java54 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 DHandlerData.java61 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 DAdapterInvocationInfo.java56 * 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 DEjb2RuntimeEndpointInfo.java96 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 DEjbInvokerImpl.java59 Object inv, WebServiceContextImpl w) {
60 super(core, inv, w);
58 EjbInvokerImpl(Class endpointImpl, Invoker core, Object inv, WebServiceContextImpl w) argument
H A DResourceInjectorImpl.java71 private ComponentInvocation inv; field in class:ResourceInjectorImpl
80 inv = invMgr.getCurrentInvocation();
90 invMgr.preInvoke(inv);
134 invMgr.postInvoke(inv);
H A DInvokerImpl.java58 public InvokerImpl(Invoker core, Object inv, WebServiceContextImpl wsc) { argument
61 this.invokeObject = inv;
H A DEjbRuntimeEndpointInfo.java132 ComponentInvocation inv = null;
185 inv = container.startInvocation();
186 adapterInvInfo.setInv(inv);
304 if (inv != null) {
305 EJBInvocation ejbInv = (EJBInvocation) inv;
364 public void releaseImplementor(ComponentInvocation inv) { argument
366 container.endInvocation(inv);
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/jmac/
H A DWebServicesDelegate.java90 * @param inv the invocation
93 public Object getSOAPMessage(ComponentInvocation inv); argument
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/
H A DWebServicesDelegateImpl.java215 public Object getSOAPMessage(ComponentInvocation inv) { argument
219 MessageContext msgContext = inv.messageContext;
228 soapMessage = inv.getSOAPMessage();
/glassfish-3.1.2/transaction/jta/src/main/java/com/sun/enterprise/transaction/
H A DUserTransactionImpl.java140 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/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/transport/
H A DJBIAdapter.java73 private WebComponentInvocation inv; field in class:JBIAdapter
85 WebComponentInvocation inv) {
91 this.inv = inv;
123 } else if(inv != null){
127 invocationMgr.postInvoke(inv);
79 JBIAdapter(WSEndpoint endpoint, ServiceEngineEndpoint endpt, MessageExchange me, ClassLoader classLoader ,EjbRuntimeEndpointInfo ejbEndPtInfo, AdapterInvocationInfo adapterInvocationInfo, WebComponentInvocation inv) argument
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/core/
H A DServiceEngineRuntimeHelper.java77 private InvocationManager inv; field in class:ServiceEngineRuntimeHelper
116 return inv;
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DSecurityManager.java62 public boolean authorize(ComponentInvocation inv); argument
82 public void preInvoke (ComponentInvocation inv); argument
90 public void postInvoke (ComponentInvocation inv); argument

Completed in 30 milliseconds

12