Searched refs:getService (Results 1 - 25 of 59) sorted by relevance

123

/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DGlassFish.java71 {@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 DGlassFishDecorator.java82 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 DGlassFishImpl.java112 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 DEngine.java125 public Service getService(); method in interface:Engine
H A DConnector.java228 public Service getService(); method in interface:Connector
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/service/
H A DConnectorAdminServicesFactory.java59 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 DServiceFactory.java47 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 DJBITransportPipeFactory.java150 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 DOSGiGlassFishImpl.java70 StartLevel sl = StartLevel.class.cast(bundleContext.getService(
H A DOSGiFrameworkLauncher.java103 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 DClientPipeCreator.java77 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 DEmbeddedCreateContextTest.java73 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedAddContextTest.java75 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedAddListenerDefaultVSTest.java78 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedAddServletAndFilterByClassNameTest.java81 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedAddServletAndFilterByClassTest.java82 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedAddServletDefaultVSTest.java78 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedClassLoaderTest.java72 wc = glassfish.getService(WebContainer.class);
H A DEmbeddedRedeployTest.java75 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedSetConfigurationTest.java77 embedded = glassfish.getService(WebContainer.class);
H A DEmbeddedSetDefaultWebXmlTest.java76 embedded = glassfish.getService(WebContainer.class);
/glassfish-3.1.2/osgi-platforms/felix-webconsole-extension/src/main/java/org/glassfish/osgi/felixwebconsoleextension/
H A DFelixWebConsoleExtensionActivator.java84 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 DUberJarOSGiGlassFishRuntimeBuilder.java210 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 DStandardEngine.java274 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 DOSGiDeployer.java91 return (PackageAdmin) context.getService(context.getServiceReference(PackageAdmin.class.getName()));

Completed in 1570 milliseconds

123