Searched defs:interfaceName (Results 1 - 19 of 19) sorted by relevance

/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/connector/cci/
H A DConnectionFactoryTest.java130 * @param interfaceName the interface name we look for
158 * @param interfaceName the interface name we look for
162 protected boolean testImplementationOf(ConnectorDescriptor descriptor, String interfaceName, Result result) argument
166 return testImplementationOf(mcf, interfaceName, result);
H A DConnectionTest.java152 * @param interfaceName the interface name we look for
156 protected boolean testImplementationOf(ConnectorDescriptor descriptor, String interfaceName, Result result) argument
160 return testImplementationOf(mcf, interfaceName, result);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/connector/managed/
H A DManagedConnectionFactoryTest.java162 * @param interfaceName the interface name we look for
166 protected boolean testImplementationOf(ConnectorDescriptor descriptor, String interfaceName, Result result) argument
170 return testImplementationOf(mcf, interfaceName, result);
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/
H A DMetaGetters.java68 public String interfaceName(); method in interface:MetaGetters
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/webservice/
H A DSEIConfig.java54 private String interfaceName; field in class:SEIConfig
70 this.interfaceName = svcIntf;
80 public String getInterface() { return this.interfaceName; }
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/connector/
H A DConnectorTest.java105 * @param interfaceName the interface the class should implement
109 protected Class findImplementorOf(ConnectorDescriptor desc, String interfaceName) { argument
114 * implements the requested interface "interfaceName"
140 if (isImplementorOf(c, interfaceName))
213 * @param interfaceName interface to look for an implementor
216 protected boolean findImplementorOf(ConnectorDescriptor desc, String interfaceName, Result result) argument
218 Class c = findImplementorOf(desc, interfaceName);
223 new Object[] {c.getName(), interfaceName}));
229 new Object[] {interfaceName}));
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/deployment/
H A DBeanMethodCalculatorImpl.java256 private Collection getTransactionMethodsFor(ClassLoader loader, String interfaceName, Collection disallowedMethods) argument
259 Class clazz = loader.loadClass(interfaceName);
/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/system/
H A DLegacyJmsRecoveryResourceHandler.java156 private boolean instanceOf(Object obj, String interfaceName) argument
163 if (aClassName.indexOf(interfaceName) != -1)
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/
H A DVerifierTest.java194 * @param interfaceName is the interface we test for implementation
197 public static boolean isImplementorOf(Class<?> c, String interfaceName) { argument
199 if (c==null || interfaceName==null)
205 Class<?> intf = Class.forName(interfaceName);
213 if (isSubclassOf(c, interfaceName)) {
219 if (isSubclassOf(interfaces[i], interfaceName)) {
287 * @param interfaceName the name of the interface that should be implementad
291 public static boolean testImplementationOf(Class clazz, String interfaceName, Result result) argument
293 if (isImplementorOf(clazz, interfaceName)) {
297 new Object[] {clazz.getName(), interfaceName}));
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DMBeanProxyHandler.java164 public String interfaceName() method in class:MBeanProxyHandler
166 final String value = (String) getMBeanInfo().getDescriptor().getFieldValue("interfaceName");
H A DJMXUtil.java1767 public static String interfaceName(final MBeanInfo info) method in class:JMXUtil
1771 return d == null ? (String) null : (String) d.getFieldValue("interfaceName");
/glassfish-3.1.2/persistence/cmp/ejb-mapping/src/main/java/com/sun/jdo/api/persistence/mapping/ejb/
H A DAbstractNameMapper.java166 * @param interfaceName the name of the local interface
172 String fieldName, String interfaceName) {
173 if (isLocalInterface(interfaceName)) {
179 getEjbNameForLocalInterface(ejbName, ejbField, interfaceName));
190 * @param interfaceName the name of the local interface
194 String fieldName, String interfaceName);
216 * @param interfaceName the name of the remote interface
222 String className, String fieldName, String interfaceName) {
223 if (isRemoteInterface(interfaceName)) {
229 getEjbNameForRemoteInterface(ejbName, ejbField, interfaceName));
171 getPersistenceClassForLocalInterface(String className, String fieldName, String interfaceName) argument
193 getEjbNameForLocalInterface(String ejbName, String fieldName, String interfaceName) argument
221 getPersistenceClassForRemoteInterface( String className, String fieldName, String interfaceName) argument
243 getEjbNameForRemoteInterface(String ejbName, String fieldName, String interfaceName) argument
[all...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/
H A DEnhancerModel.java183 * @param interfaceName the fully qualified name of the interface to
190 String interfaceName)
189 implementsInterface(Object classElement, String interfaceName) argument
H A DRuntimeModel.java492 * @param interfaceName the fully qualified name of the interface to
499 String interfaceName)
501 Class interfaceClass = (Class)getClass(interfaceName);
498 implementsInterface(Object classElement, String interfaceName) argument
H A DModel.java1143 * @param interfaceName the fully qualified name of the interface to
1150 String interfaceName);
1149 implementsInterface(Object classElement, String interfaceName) argument
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/
H A DNameMapper.java345 * @param interfaceName the name of the local interface
349 String fieldName, String interfaceName)
354 return (((descriptor != null) && !StringHelper.isEmpty(interfaceName)
355 && interfaceName.equals(descriptor.getLocalClassName())) ?
386 * @param interfaceName the name of the remote interface
390 String fieldName, String interfaceName)
395 return (((descriptor != null) && !StringHelper.isEmpty(interfaceName)
396 && interfaceName.equals(descriptor.getRemoteClassName())) ?
348 getEjbNameForLocalInterface(String ejbName, String fieldName, String interfaceName) argument
389 getEjbNameForRemoteInterface(String ejbName, String fieldName, String interfaceName) argument
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/
H A DEJBUtils.java269 String interfaceName,
274 String portableFullyQualifiedPortion = PORTABLE_JNDI_NAME_SEP + interfaceName;
275 String glassfishFullyQualifiedPortion = GLASSFISH_JNDI_NAME_SEP + interfaceName;
268 getRemoteEjbJndiName(boolean businessView, String interfaceName, String jndiName) argument
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DClassAction.java1166 private void augmentClassInterface(String interfaceName) { argument
1169 ConstClass iface = cfile.pool().addClass(interfaceName);
1172 + ClassControl.userClassFromVMClass(interfaceName));
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/proxy/
H A DAMXProxyHandler.java98 // " to interface " + intf.getName() + ", interfaceName from Descriptor = " + interfaceName());
890 public static String interfaceName(final MBeanInfo info) method in class:AMXProxyHandler
897 public String interfaceName() method in class:AMXProxyHandler
899 String name = super.interfaceName();

Completed in 86 milliseconds