Searched defs:methodIntf (Results 1 - 12 of 12) sorted by relevance

/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/businessmethod/
H A DBusinessMethodMatchesWithDD.java112 * @param methodIntf for the interface type
117 String methodIntf) {
151 (new MethodDescriptor(remoteMethod,methodIntf)).getParameterClassNames())) {
115 commonToBothInterfaces(String intf, EjbDescriptor descriptor, String methodIntf) argument
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/session/
H A DTransactionDemarcationHomeInterface.java165 * @param methodIntf for the interface type
170 private boolean commonToBothInterfaces(String home, EjbSessionDescriptor descriptor, String methodIntf) { argument
200 String methodIntf = null;
202 methodIntf = methodDescriptor.getEjbClassSymbol();
204 if ( methodIntf == null ) { //|| methodIntf.equals("")
257 (MethodUtils.stringArrayEquals(methodDescriptor.getParameterClassNames(), (new MethodDescriptor(methods[i], methodIntf)).getParameterClassNames()))) {
H A DTransactionDemarcationComponentInterface.java175 private boolean commonToBothInterfaces(String component, EjbSessionDescriptor descriptor, String methodIntf) { argument
213 String methodIntf = null;
215 methodIntf = methodDescriptor.getEjbClassSymbol();
217 if ( methodIntf == null ) { //|| methodIntf.equals("")
279 (MethodUtils.stringArrayEquals(methodDescriptor.getParameterClassNames(), (new MethodDescriptor(componentInterfaceMethods[i], methodIntf)).getParameterClassNames()))) {
/glassfish-3.1.2/ejb/ejb-connector/src/main/java/org/glassfish/ejb/deployment/annotation/handlers/
H A DAsynchronousHandler.java142 * @param methodIntf null if processed on bean class / superclass. Otherwise,
146 private void setAsynchronous(Method m0, EjbDescriptor ejbDesc, String methodIntf) argument
157 MethodDescriptor methodDesc = (methodIntf == null) ?
158 new MethodDescriptor(m0) : new MethodDescriptor(m0, methodIntf);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/
H A DTransactionDemarcationComponentInterface.java139 private boolean commonToBothInterfaces(String component, EjbDescriptor descriptor, String methodIntf) { argument
175 String methodIntf = null;
177 methodIntf = methodDescriptor.getEjbClassSymbol();
179 if ( methodIntf == null ) { //|| methodIntf.equals("")
242 (MethodUtils.stringArrayEquals(methodDescriptor.getParameterClassNames(), (new MethodDescriptor(componentInterfaceMethods[i], methodIntf)).getParameterClassNames()))) {
H A DTransactionDemarcationHomeInterface.java133 * @param methodIntf is the interface type
137 private boolean commonToBothInterfaces(String home, EjbDescriptor descriptor, String methodIntf) { argument
172 String methodIntf = null;
174 methodIntf = methodDescriptor.getEjbClassSymbol();
176 if ( methodIntf == null ) { //|| methodIntf.equals("")
236 (MethodUtils.stringArrayEquals(methodDescriptor.getParameterClassNames(), (new MethodDescriptor(methods[i], methodIntf)).getParameterClassNames()))) {
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/findermethod/
H A DHomeInterfaceFindMethodHasQuery.java134 * @param methodIntf is the interface type
138 private boolean commonToBothInterfaces(String home, EjbDescriptor descriptor, String methodIntf) { argument
152 QueryDescriptor query = pers.getQueryFor(new MethodDescriptor(methods[i], methodIntf));
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/
H A DInvocationInfo.java67 public String methodIntf; field in class:InvocationInfo
127 sb.append("methodIntf = " + methodIntf + "\t");
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/deployment/
H A DBeanMethodCalculatorImpl.java306 private void transformAndAdd(Collection methods, String methodIntf, Vector globalList) { argument
310 MethodDescriptor md = new MethodDescriptor(m, methodIntf);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DMethodDescriptor.java138 public MethodDescriptor(Method method, String methodIntf) { argument
141 this.setEjbClassSymbol(methodIntf);
H A DEjbDescriptor.java2326 protected void addAllInterfaceMethodsIn(Collection methodDescriptors, Class c, String methodIntf) { argument
2330 methodDescriptors.add(new MethodDescriptor(methods[i], methodIntf));
2338 public MethodDescriptor getBusinessMethodDescriptorFor(Method m, String methodIntf) { argument
2340 MethodDescriptor methodDesc = new MethodDescriptor(m, methodIntf);
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DBaseContainer.java2764 protected final int getTxAttr(Method method, String methodIntf) argument
2769 methodIntf.equals(MethodDescriptor.EJB_WEB_SERVICE) ?
2915 private InvocationInfo addInvocationInfo(Method method, String methodIntf, argument
2919 return addInvocationInfo(method, methodIntf, originalIntf, false, false);
2921 private InvocationInfo addInvocationInfo(Method method, String methodIntf, argument
2925 return addInvocationInfo(method, methodIntf, originalIntf, isEjbTimeout, false);
2928 private InvocationInfo addInvocationInfo(Method method, String methodIntf, argument
2934 MethodDescriptor md = new MethodDescriptor(method, methodIntf);
2938 (method, txAttr, flushEnabled, methodIntf, originalIntf);
2939 boolean isHomeIntf = (methodIntf
3045 isEligibleForAsync(Class originalIntf, String methodIntf) argument
3066 createInvocationInfo(Method method, int txAttr, boolean flushEnabled, String methodIntf, Class originalIntf) argument
3119 setConcurrencyInvInfo(Method invInfoMethod, String methodIntf, InvocationInfo invInfo) argument
3183 implMethodMatchesInvInfoMethod(Method invInfoMethod, String methodIntf, Method implMethod) argument
3410 registerTxAttrForMethod(Method method, String methodIntf) argument
[all...]

Completed in 38 milliseconds