Searched refs:method (Results 1 - 25 of 258) sorted by relevance

1234567891011

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/stats/
H A DEJBMethodStatsManager.java49 public void preInvoke(Method method); argument
51 public void postInvoke(Method method, Throwable th); argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/acl/
H A DResource.java50 private String method; field in class:Resource
52 protected Resource(String app, String name, String method) { argument
55 this.method = method;
67 return this.method;
H A DEJBResource.java52 public EJBResource(String app, Method method) { argument
53 super(app,method.getDeclaringClass().getName(), method.toString());
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/
H A DBCELMethod.java54 private com.sun.org.apache.bcel.internal.classfile.Method method; field in class:BCELMethod
59 com.sun.org.apache.bcel.internal.classfile.Method method) {
61 new Object[]{owningClass.getName(), method.getName()});
63 this.method = method;
71 return method.getName();
75 return method.getSignature();
79 return method.getAccessFlags();
103 return method.isNative();
58 BCELMethod(ClassFile owningClass, com.sun.org.apache.bcel.internal.classfile.Method method) argument
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/
H A DAbstractMethodHelper.java54 /** This is a helper class which extracts the information needed for method
107 Method method = methodDescriptor.getMethod(descriptor);
114 finders.add(method);
116 selectors.add(method);
118 createMethods.add(method);
125 // otherMethods.add(method);
129 methodNames.put(methodName, method);
166 /** Gets a map of the method names for this bean. The keys are the
167 * method names and the values are the java.lang.reflect.Method objects.
169 * @return a map of the method name
197 getQueryDescriptor(Method method) argument
210 getQueryString(Method method) argument
225 getQueryReturnType(Method method) argument
246 isQueryPrefetchEnabled(Method method) argument
255 getJDOFilterExpression(Method method) argument
264 getJDOParameterDeclaration(Method method) argument
273 getJDOVariableDeclaration(Method method) argument
282 getJDOOrderingSpecification(Method method) argument
[all...]
H A DMethodHelper.java64 * which provides overridden method implementations based on an SunONE
108 * method, <code>false</code> otherwise. Prefetch is enabled by default.
109 * @param method the java.lang.reflect.Method object used to find the
113 public boolean isQueryPrefetchEnabled (Method method) argument
116 QueryDescriptor queryDescriptor = getQueryDescriptor(method);
138 /** Gets the jdo filter expression associated with the specified method
139 * if it exists. Note that this method should only be used for CMP 1.1 -
141 * @param method the java.lang.reflect.Method object used to find the
145 public String getJDOFilterExpression (Method method) argument
147 IASEjbCMPFinder cmpFinder = getFinder(method);
159 getJDOParameterDeclaration(Method method) argument
174 getJDOVariableDeclaration(Method method) argument
188 getJDOOrderingSpecification(Method method) argument
196 getFinder(Method method) argument
[all...]
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/datatree/impl/
H A DMethodInvokerImpl.java57 Method method; field in class:MethodInvokerImpl
61 method = m;
64 return method;
81 if (method == null){
82 throw new RuntimeException ("Flashlight:MethodInvoker: method, " +
90 retValue = method.invoke(methodInstance, null);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/homeintf/
H A DHomeMethodNameMatch.java52 * For each method defined in the home interface, there must be a matching
53 * method in the enterprise Bean's class prefixed with ejbHome.
62 * run an individual home method test
65 * @param method the home method to test
70 protected void runIndividualHomeMethodTest(Method method, EjbDescriptor descriptor, Result result) { argument
80 String methodName = method.getName().replaceFirst(method.getName().substring(0,1),
81 method.getName().substring(0,1).toUpperCase());
85 m = getMethod(ejbClass, expectedMethodName, method
[all...]
H A DHomeMethodModifiers.java62 * run an individual home method test
65 * @param method the home method to test
70 protected void runIndividualHomeMethodTest(Method method, EjbDescriptor descriptor, Result result) { argument
81 String methodName = method.getName().replaceFirst(method.getName().substring(0,1),
82 method.getName().substring(0,1).toUpperCase());
86 m = getMethod(ejbClass, expectedMethodName, method.getParameterTypes());
95 "For method [ {1} ] in Home Interface [ {0} ], ejbHome method i
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DConcurrentMethodDescriptor.java47 private MethodDescriptor method; field in class:ConcurrentMethodDescriptor
58 method = m;
62 return method;
H A DEjbInitInfo.java50 * Contains information about a stateful session bean init method.
67 public void setBeanMethod(MethodDescriptor method) { argument
68 beanMethod = method;
75 public void setCreateMethod(MethodDescriptor method) { argument
76 createMethod = method;
82 sb.append("bean method = " + beanMethod + "\t");
83 sb.append("create method = " + createMethod + "\t");
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEJBObjectInvocationHandlerDelegate.java70 public Object invoke(Object proxy, Method method, Object[] args) argument
73 Class methodClass = method.getDeclaringClass();
77 (this, method, args);
79 result = delegate.invoke(remoteBusinessIntfClass, method, args);
H A DWebServiceInvocationHandler.java99 public Object invoke(Object proxy, Method method, Object[] args) argument
104 // if method signature has 0 arguments.
106 Class methodClass = method.getDeclaringClass();
109 invokeJavaObjectMethod(this, method, args);
123 // find the right method object on the SIB.
125 // we need to substiture the method object
126 method = ejbClass_.getMethod(method.getName(), method.getParameterTypes());
128 inv.method
[all...]
H A DRemoteBusinessIntfInvocationHandler.java76 public Object invoke(Object proxy, Method method, Object[] args) argument
80 // if method signature has 0 arguments.
82 Class methodClass = method.getDeclaringClass();
85 invokeJavaObjectMethod(this, method, args);
92 (method.getName(), method.getParameterTypes());
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/sfsb/util/
H A DCheckpointPolicy.java46 * A Utility class to determine if checkpointing is required for a method
55 public boolean needsCheckpoint(Method method); argument
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/ejb30/
H A DCallbackMethodArgument.java70 Method method = callbackDesc.getLifecycleCallbackMethodObject(cl);
71 Class<?>[] args = method.getParameterTypes();
73 logFailure(callbackMethodName, method);
77 logFailure(callbackMethodName, method);
H A DInterceptorMethodNotStaticOrFinal.java50 * An interceptor method must not be declared as final or static.
62 Method method = callbackDesc.getLifecycleCallbackMethodObject(cl);
63 if(Modifier.isFinal(method.getModifiers()) ||
64 Modifier.isStatic(method.getModifiers())) {
65 logFailure(callbackMethodName, method);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/cmp2/
H A DFindMethodException.java59 * Run an individual test against a finder method (single or multi)
62 * @param method is the finder method reference
69 protected boolean runIndividualQueryTest(Method method, EjbCMPEntityDescriptor descriptor, Class targetClass, Result result) { argument
71 if (methodThrowException(method, "javax.ejb.FinderException")) {
79 new Object[] {method.getName()}));
89 new Object[] {method.getName()}));
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/results/
H A DOptionsResult.java51 * Response information object. Returned on call to OPTIONS method.
73 * Returns meta-data object for the given method
75 public MethodMetaData getMethodMetaData(String method) { argument
76 return __metaData.get(method);
81 * Adds meta-data object for the given method
83 public MethodMetaData putMethodMetaData(String method, MethodMetaData methodMetaData) { argument
84 return __metaData.put(method, methodMetaData);
88 * Returns no of method meta-data available.
96 * Returns set of method names for which meta-data is available.
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/impl/core/
H A DProbeClientAnnotationHandler.java52 public void handle(Method method); argument
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DMethodAction.java69 * method of a class.
110 /* The method to which the actions apply */
114 /* The code annotater for the method */
125 * this method.
132 * Returns the method for which this MethodAction applies
134 ClassMethod method() { method in class:MethodAction
143 ClassMethod method,
146 theMethod = method;
148 annotater = new MethodAnnotater(ca, method, env);
152 * Examine the method t
142 MethodAction(ClassAction ca, ClassMethod method, Environment env) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DEjbVisitor.java68 * visits a method permission and permitted methods for the
70 * @param method permission
76 * visits a method transaction
77 * @param ejb descritptor this method applies to
78 * @param method descriptor the method
81 public void accept(MethodDescriptor method, ContainerTransaction ct); argument
90 * visits a query method
91 * @param method descriptor for the method
94 accept(MethodDescriptor method, QueryDescriptor qd) argument
[all...]
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DServletImplInvocationHandler.java72 public Object invoke(Object proxy, Method method, Object[] args) argument
76 // if method signature has 0 arguments.
78 Class methodClass = method.getDeclaringClass();
80 return invokeJavaObjectMethod(this, method, args);
87 // method lookup to get method object to use for invocation.
89 (method.getName(), method.getParameterTypes());
103 Method method, Object[] args)
115 switch( method
102 invokeJavaObjectMethod(InvocationHandler handler, Method method, Object[] args) argument
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/
H A DInvocationInfo.java52 * InvocationInfo caches various attributes of the method that
55 * method.getName().startsWith("findByPrimaryKey")
57 * Every container maintains a HashMap of method VS invocationInfo that
66 public Method method; field in class:InvocationInfo
93 // method associated with @AroundInvoke or @AroundTimeout
111 public InvocationInfo(Method method) { argument
112 this.method = method;
126 sb.append("method=" + method
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/security/
H A DSecurityUtil.java106 * Cache every object for which we are creating method on it.
137 * @param methodName the method to apply the security restriction
138 * @param targetObject the <code>Servlet</code> on which the method will
151 * @param methodName the method to apply the security restriction
152 * @param targetObject the <code>Servlet</code> on which the method will
177 * @param methodName the method to apply the security restriction
178 * @param targetObject the <code>Servlet</code> on which the method will
194 Method method = null;
198 method = findMethod(methodsCache, methodName);
199 if (method
312 execute(final Method method, final Object targetObject, final Object[] targetArguments, Principal principal) argument
[all...]

Completed in 1113 milliseconds

1234567891011