public static enum ApplicationEvent.Type extends Enum<ApplicationEvent.Type>
Enum Constant and Description |
---|
DESTROY_FINISHED
Application has been destroyed (stopped).
|
INITIALIZATION_APP_FINISHED
Initialization of
jersey application is
finished but the server might not be started and ready yet to serve requests (this will be
indicated by the INITIALIZATION_FINISHED event). |
INITIALIZATION_FINISHED
Initialization of the application has finished, server is started and application is ready
to handle requests now.
|
INITIALIZATION_START
Initialization of the application has started.
|
RELOAD_FINISHED
The application reload is finished.
|
Modifier and Type | Method and Description |
---|---|
static ApplicationEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationEvent.Type INITIALIZATION_START
public static final ApplicationEvent.Type INITIALIZATION_APP_FINISHED
jersey application
is
finished but the server might not be started and ready yet to serve requests (this will be
indicated by the INITIALIZATION_FINISHED
event). This event indicates only that the
environment is ready (all providers are registered, application is configured, etc.).public static final ApplicationEvent.Type INITIALIZATION_FINISHED
public static final ApplicationEvent.Type DESTROY_FINISHED
public static final ApplicationEvent.Type RELOAD_FINISHED
Container.reload()
method. When this event is triggered
the reload is completely finished, which means that the new application is initialized (appropriate
events are called) and new reloaded application is ready to server requests.public static ApplicationEvent.Type[] values()
for (ApplicationEvent.Type c : ApplicationEvent.Type.values()) System.out.println(c);
public static ApplicationEvent.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.