Searched refs:lookup (Results 1 - 25 of 132) sorted by relevance

123456

/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/stringifier/
H A DStringifierRegistry.java67 lookup( Class<?> theClass ); method in interface:StringifierRegistry
H A DStringifierRegistryImpl.java49 Holds a lookup table for Stringifiers. Certain Stringifier classes
71 When lookup() is called, if it cannot be found in this registry, then
86 if ( lookup( theClass ) != null )
97 lookup( final Class<?> theClass ) method in class:StringifierRegistryImpl
103 stringifier = mNextRegistry.lookup( theClass );
H A DSmartStringifier.java110 Stringifier stringifier = mRegistry.lookup( targetClass );
125 stringifier = mRegistry.lookup( theClass );
139 stringifier = mRegistry.lookup( tempClass );
/glassfish-3.1.2/tests/quicklook/ejb/remoteview/src/test/
H A DRemoteViewTestNG.java58 HelloHome helloHome = (HelloHome) new InitialContext().lookup("java:global/" + appName + "/HelloBean!remoteview.HelloHome");
61 Hello hello = (Hello) new InitialContext().lookup("HH#remoteview.Hello");
85 HelloHome helloHome2 = (HelloHome) new InitialContext().lookup("java:global/" + appName + "/HelloBean!remoteview.HelloHome");
88 Hello hello2 = (Hello) new InitialContext().lookup("java:global/" + appName + "/HelloBean!remoteview.Hello");
103 HelloHome helloHome5 = (HelloHome) new InitialContext().lookup("HH");
106 Hello hello5 = (Hello) new InitialContext().lookup("HH#remoteview.Hello");
/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/
H A DEJB.java52 * Either the <code>beanName</code> or the <code>lookup</code> element can
55 * <code>lookup</code>.
111 * A portable lookup string containing the JNDI name for the target EJB component.
115 String lookup() default "";
H A DEJBContext.java219 * unqualified strings. In that case the lookup will be relative to
224 * calls to <code> EJBContext.lookup</code> are equivalent :
226 * <code>ejbContext.lookup("ejb/BarRef")</code>;
227 * <code>ejbContext.lookup("java:comp/env/ejb/BarRef")</code>;
237 Object lookup(String name) throws IllegalArgumentException; method in interface:EJBContext
/glassfish-3.1.2/javaee-api/javax.annotation/src/main/java/javax/annotation/
H A DResource.java87 String lookup() default "";
/glassfish-3.1.2/common/glassfish-naming/src/test/java/com/sun/enterprise/naming/impl/
H A DAppTest.java82 System.out.println("**lookup() ==> " + ic.lookup("foo"));
100 String val = (String) ctx.lookup(name1);
111 System.out.println("**lookup() ==> " + ic.lookup("foo"));
129 System.out.println("**lookup() ==> " + ic.lookup("bar"));
130 System.out.println("**lookup() ==> " + ic.lookup("bar"));
185 Context ctx = (Context) ic.lookup("jav
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/
H A DEjbNamingReferenceManagerImpl.java90 // local ejb dependencies if there's a lookup string, use that.
93 jndiObj = context.lookup(ejbRefDesc.getLookupName());
97 // For a remote reference, only do a context lookup if there is no
100 // which is able to load business interfaces. But if the lookup request
102 // and it also has a lookup-name, then we need to set the EAR class
105 jndiObj = context.lookup(ejbRefDesc.getLookupName());
111 jndiObj = context.lookup(ejbRefDesc.getLookupName());
127 String appName = (String) context.lookup("java:app/AppName");
133 jndiObj = context.lookup(globalLookup);
141 // We could be resolving an ejb-ref as part of a remote lookup threa
[all...]
/glassfish-3.1.2/tests/embedded/ejb/remoteejb/src/test/java/org/glassfish/tests/embedded/ejb/remoteejb/test/
H A DEJBTest.java85 SampleEjb sampleEjb = (SampleEjb) ic.lookup("java:global/remoteejb/SampleEjb");
91 TimerEjb timerEjb = (TimerEjb) ic.lookup("java:global/remoteejb/TimerEjb");
105 RemoteEJBInf remoteEjb = (RemoteEJBInf) ic.lookup("java:global/remoteejb/RemoteEJB");
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DRemoteBusinessObjectFactory.java71 Object genericRemoteHomeObj = ic.lookup((String) refAddr.getContent());
H A DReadOnlyBeanHelper.java75 * @returns a ReadOnlyBeanNotifier or null if the lookup
83 Object obj = ctx.lookup(ejbName);
98 * @returns a ReadOnlyBeanLocalNotifier or null if the lookup
107 (ReadOnlyEJBLocalHome) ctx.lookup(ejbName);
/glassfish-3.1.2/tests/embedded/maven-plugin/localejbs/src/main/java/org/glassfish/tests/embedded/localejbs/
H A DLocalEjbTest.java58 TimerEjb ejb = (TimerEjb) ic.lookup("java:global/localejbs/TimerEjb");
H A DTimerEjb.java54 TimerService timerSvc = (TimerService) new InitialContext().lookup(
/glassfish-3.1.2/tests/embedded/maven-plugin/remoteejbs/src/main/java/org/glassfish/tests/embedded/remoteejbs/
H A DTimerEjb.java54 TimerService timerSvc = (TimerService) new InitialContext().lookup(
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DJavaURLContext.java114 * the context returned for ctx.lookup("java:com/env/ejb")
139 public Object lookup(String name) throws NamingException { method in class:JavaURLContext
141 _logger.log(Level.FINE, "In javaURLContext.lookup, name = " + name
146 * javadocs for Context.lookup: If name is empty, returns a new
169 obj = namingManager.lookup(fullName, serialContext);
177 obj = namingManager.lookup(fullName, serialContext);
194 // remote session bean JNDI name via the java:app namespace or a lookup of
199 String appName = (String) namingManager.getInitialContext().lookup("java:app/AppName");
207 // the lookup will be resolved by the server.
213 obj = ic.lookup(globalLooku
251 public Object lookup(Name name) throws NamingException { method in class:JavaURLContext
[all...]
H A DRemoteSerialContextProviderImpl.java108 public Object lookup(String name) throws NamingException, RemoteException { method in class:RemoteSerialContextProviderImpl
109 Object obj = super.lookup(name);
140 // create() call and re-lookup the name.
142 return super.lookup(name);
H A DSerialContextProvider.java56 public Object lookup(String name) method in interface:SerialContextProvider
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DJndiNamingObjectFactory.java82 Object tempResult = ic.lookup(jndiName);
90 result = ic.lookup(jndiName);
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/appserv/ejb/
H A DReadOnlyBeanHelper.java70 Object obj = ctx.lookup(ejbName);
88 (ReadOnlyEJBLocalHome) ctx.lookup(ejbName);
/glassfish-3.1.2/tests/quicklook/ejb/mdb/src/com/sun/mdb/client/
H A DClient.java92 queueConFactory = (javax.jms.QueueConnectionFactory) ic.lookup("jms/ejb_ejb30_hello_mdb_QCF");
93 msgBeanQueue = (javax.jms.Queue) ic.lookup("jms/ejb_ejb30_hello_mdb_InQueue");
94 clientQueue = (javax.jms.Queue) ic.lookup("jms/ejb_ejb30_hello_mdb_OutQueue");
/glassfish-3.1.2/tests/embedded/ejb/basic/src/main/java/org/glassfish/tests/embedded/ejb/basic/
H A DTimerEjb.java58 TimerService timerSvc = (TimerService) new InitialContext().lookup(
/glassfish-3.1.2/tests/embedded/ejb/remoteejb/src/main/java/org/glassfish/tests/embedded/ejb/remoteejb/
H A DTimerEjb.java58 TimerService timerSvc = (TimerService) new InitialContext().lookup(
/glassfish-3.1.2/tests/embedded/maven-plugin/remoteejbs/src/test/java/org/glassfish/tests/embedded/remoteejbs/
H A DEjbTest.java60 (TimerRemote) ic.lookup("java:global/remoteejbs/TimerEjb");
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/authenticator/
H A DHASingleSignOn.java138 HASingleSignOnEntry sso = (HASingleSignOnEntry)lookup(ssoId);
152 protected SingleSignOnEntry lookup(String ssoId) { method in class:HASingleSignOn
153 SingleSignOnEntry ssoEntry = super.lookup(ssoId);
179 HASingleSignOnEntry entry = (HASingleSignOnEntry)lookup(ssoId);

Completed in 3929 milliseconds

123456