|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.ws.rs.core.Application
org.jboss.example.jaxrs2.async.ChatApplication
public class ChatApplication
Constructor Summary | |
---|---|
ChatApplication()
|
Method Summary | |
---|---|
Set<Class<?>> |
getClasses()
Get a set of root resource, provider and feature classes. |
Set<Object> |
getSingletons()
Get a set of root resource, provider and feature instances. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ChatApplication()
Method Detail |
---|
public Set<Class<?>> getClasses()
Application
feature
classes.
The default life-cycle for resource class instances is per-request. The default
life-cycle for providers (registered directly or via a feature) is singleton.
Implementations should warn about and ignore classes that do not
conform to the requirements of root resource or provider/feature classes.
Implementations should warn about and ignore classes for which
Application.getSingletons()
returns an instance. Implementations MUST
NOT modify the returned set.
The default implementation returns an empty set.
getClasses
in class Application
null
is equivalent to returning an empty set.public Set<Object> getSingletons()
Application
feature
instances.
Fields and properties of returned instances are injected with their declared
dependencies (see Context
) by the runtime prior to use.
Implementations should warn about and ignore classes that do not conform to the requirements of root resource or provider classes. Implementations should flag an error if the returned set includes more than one instance of the same class. Implementations MUST NOT modify the returned set.
The default implementation returns an empty set.
getSingletons
in class Application
null
is equivalent to returning an empty set.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |