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