Searched defs:serviceType (Results 1 - 3 of 3) sorted by relevance

/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 { argument
83 return decoratedGf.getService(serviceType);
87 public <T> T getService(Class<T> serviceType, String serviceName) throws GlassFishException { argument
88 return decoratedGf.getService(serviceType, serviceName);
H A DGlassFishImpl.java112 public <T> T getService(Class<T> serviceType) throws GlassFishException { argument
113 return getService(serviceType, null);
116 public synchronized <T> T getService(Class<T> serviceType, String serviceName) throws GlassFishException { argument
123 return serviceName != null ? habitat.getComponent(serviceType, serviceName) :
124 habitat.getComponent(serviceType);
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DGlassFish.java145 * @param serviceType type of component required.
149 <T> T getService(Class<T> serviceType) throws GlassFishException; argument
154 * @param serviceType type of component required.
159 <T> T getService(Class<T> serviceType, String serviceName) throws GlassFishException; argument

Completed in 175 milliseconds