/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/ |
H A D | GlassFish.java | 71 {@link Deployer} deployer = glassfish.getService(Deployer.</span><span class="s2">class</span><span class="s1">); 76 {@link CommandRunner} commandRunner = glassfish.getService(CommandRunner.</span><span class="s2">class</span><span class="s1">); 149 <T> T getService(Class<T> serviceType) throws GlassFishException; method in interface:GlassFish 159 <T> T getService(Class<T> serviceType, String serviceName) throws GlassFishException; method in interface:GlassFish 164 * Calling this method is equivalent to calling <code>getService(Deployer.class, null)</code> 172 * Calling this method is equivalent to calling <code>getService(CommandRunner.class, null)</code>
|
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/ |
H A D | GlassFishDecorator.java | 82 public <T> T getService(Class<T> serviceType) throws GlassFishException { method in class:GlassFishDecorator 83 return decoratedGf.getService(serviceType); 87 public <T> T getService(Class<T> serviceType, String serviceName) throws GlassFishException { method in class:GlassFishDecorator 88 return decoratedGf.getService(serviceType, serviceName);
|
H A D | GlassFishImpl.java | 112 public <T> T getService(Class<T> serviceType) throws GlassFishException { method in class:GlassFishImpl 113 return getService(serviceType, null); 116 public synchronized <T> T getService(Class<T> serviceType, String serviceName) throws GlassFishException { method in class:GlassFishImpl 128 return getService(Deployer.class); 132 return getService(CommandRunner.class);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ |
H A D | Engine.java | 125 public Service getService(); method in interface:Engine
|
H A D | Connector.java | 228 public Service getService(); method in interface:Connector
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/service/ |
H A D | ConnectorAdminServicesFactory.java | 59 public static ConnectorService getService(String type) { method in class:ConnectorAdminServicesFactory
|
/glassfish-3.1.2/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/services/ |
H A D | ServiceFactory.java | 47 public static final Service getService(ServerDirs dirs, AppserverServiceType type) { method in class:ServiceFactory
|
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/transport/ |
H A D | JBITransportPipeFactory.java | 150 QName serviceName = context.getService().getServiceName(); 158 URL wsdlURL = context.getService().getWSDLDocumentLocation(); 159 QName service = context.getService().getServiceName();
|
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/ |
H A D | OSGiGlassFishImpl.java | 70 StartLevel sl = StartLevel.class.cast(bundleContext.getService(
|
H A D | OSGiFrameworkLauncher.java | 103 public <T> T getService(Class<T> type) throws Exception { method in class:OSGiFrameworkLauncher
|
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/ |
H A D | ClientPipeCreator.java | 77 propBag.put(PipeConstants.SERVICE, ctxt.getService()); 111 // propBag.put(PipeConstants.SERVICE, ctxt.getService());
|
/glassfish-3.1.2/tests/embedded/web/web-api/src/test/java/org/glassfish/tests/embedded/web/ |
H A D | EmbeddedCreateContextTest.java | 73 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedAddContextTest.java | 75 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedAddListenerDefaultVSTest.java | 78 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedAddServletAndFilterByClassNameTest.java | 81 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedAddServletAndFilterByClassTest.java | 82 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedAddServletDefaultVSTest.java | 78 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedClassLoaderTest.java | 72 wc = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedRedeployTest.java | 75 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedSetConfigurationTest.java | 77 embedded = glassfish.getService(WebContainer.class);
|
H A D | EmbeddedSetDefaultWebXmlTest.java | 76 embedded = glassfish.getService(WebContainer.class);
|
/glassfish-3.1.2/osgi-platforms/felix-webconsole-extension/src/main/java/org/glassfish/osgi/felixwebconsoleextension/ |
H A D | FelixWebConsoleExtensionActivator.java | 84 ConfigurationAdmin ca = ConfigurationAdmin.class.cast(context.getService(reference));
|
/glassfish-3.1.2/extras/embedded/common/bootstrap/src/main/java/org/glassfish/uberjar/bootstrap/ |
H A D | UberJarOSGiGlassFishRuntimeBuilder.java | 210 return fwLauncher.getService(GlassFishRuntime.class); 217 return getService(GlassFishRuntime.class, context); 241 public <T> T getService(Class<T> type, BundleContext context) throws Exception { method in class:UberJarOSGiGlassFishRuntimeBuilder
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/ |
H A D | StandardEngine.java | 274 public Service getService() { method in class:StandardEngine 575 if (getService()==null) { 578 String name = getService().getName();
|
/glassfish-3.1.2/extras/osgi-container/src/main/java/org/glassfish/extras/osgicontainer/ |
H A D | OSGiDeployer.java | 91 return (PackageAdmin) context.getService(context.getServiceReference(PackageAdmin.class.getName()));
|