Interface ApplicationMXBean
- All Known Implementing Classes:
ApplicationMXBeanImpl
public interface ApplicationMXBean
Application MX Bean.
- Author:
- Miroslav Fuksa
-
Method Summary
Modifier and TypeMethodDescriptionGet theapplication class
used for configuration of Jersey application.Get the application name.Get the map of configuration properties converted to strings.Get classes of registered providers.Get a set of string names of resource classes registered by the user.Get a set of string names of classes of user registered instances.Get the start time of the application (when application was initialized).
-
Method Details
-
getApplicationName
String getApplicationName()Get the application name.- Returns:
- Application name.
-
getApplicationClass
String getApplicationClass()Get theapplication class
used for configuration of Jersey application.- Returns:
- Application class name.
-
getProperties
Get the map of configuration properties converted to strings.- Returns:
- Map property keys to property string values.
-
getStartTime
Date getStartTime()Get the start time of the application (when application was initialized).- Returns:
- Application start time.
-
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:
-
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:
-
getProviderClasses
Get classes of registered providers.- Returns:
- Set of provider class full names (with packages names).
- See Also:
-