Searched defs:getService (Results 1 - 11 of 11) sorted by relevance

/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/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/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/
H A DOSGiFrameworkLauncher.java103 public <T> T getService(Class<T> type) throws Exception { method in class:OSGiFrameworkLauncher
/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/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/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/web/web-core/src/main/java/org/apache/catalina/connector/
H A DConnector.java429 public Service getService() { method in class:Connector
1945 if( this.getService() != null ) {
1963 if( getService() == null)
1965 getService().removeConnector(this);

Completed in 24 milliseconds