Interface ApplicationMXBean
-
- All Known Implementing Classes:
ApplicationMXBeanImpl
public interface ApplicationMXBean
Application MX Bean.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getApplicationClass()
Get theapplication class
used for configuration of Jersey application.java.lang.String
getApplicationName()
Get the application name.java.util.Map<java.lang.String,java.lang.String>
getProperties()
Get the map of configuration properties converted to strings.java.util.Set<java.lang.String>
getProviderClasses()
Get classes of registered providers.java.util.Set<java.lang.String>
getRegisteredClasses()
Get a set of string names of resource classes registered by the user.java.util.Set<java.lang.String>
getRegisteredInstances()
Get a set of string names of classes of user registered instances.java.util.Date
getStartTime()
Get the start time of the application (when application was initialized).
-
-
-
Method Detail
-
getApplicationName
java.lang.String getApplicationName()
Get the application name.- Returns:
- Application name.
-
getApplicationClass
java.lang.String getApplicationClass()
Get theapplication class
used for configuration of Jersey application.- Returns:
- Application class name.
-
getProperties
java.util.Map<java.lang.String,java.lang.String> getProperties()
Get the map of configuration properties converted to strings.- Returns:
- Map property keys to property string values.
-
getStartTime
java.util.Date getStartTime()
Get the start time of the application (when application was initialized).- Returns:
- Application start time.
-
getRegisteredClasses
java.util.Set<java.lang.String> getRegisteredClasses()
Get a set of string names of resource classes registered by the user.- Returns:
- Set of classes full names (with package names).
- See Also:
for specification of returned classes.
-
getRegisteredInstances
java.util.Set<java.lang.String> getRegisteredInstances()
Get a set of string names of classes of user registered instances.- Returns:
- Set of user registered instances converted to their class full names (with package names).
- See Also:
for specification of returned instances.
-
getProviderClasses
java.util.Set<java.lang.String> getProviderClasses()
Get classes of registered providers.- Returns:
- Set of provider class full names (with packages names).
- See Also:
for specification of returned classes.
-
-