Uses of Class
org.restlet.Application
Packages that use Application
Package
Description
Core classes of the Restlet API.
Supports Restlet applications.
Client and server resource classes.
Classes related to security.
Various utility classes.
-
Uses of Application in org.restlet
Methods in org.restlet that return ApplicationModifier and TypeMethodDescriptionRestlet.getApplication()Returns the parent application if it exists, or null.static ApplicationApplication.getCurrent()This variable is stored internally as a thread local variable and updated each time a call enters an application.Methods in org.restlet with parameters of type ApplicationModifier and TypeMethodDescriptionstatic voidApplication.setCurrent(Application application) Sets the context associated with the current thread. -
Uses of Application in org.restlet.engine.application
Constructors in org.restlet.engine.application with parameters of type Application -
Uses of Application in org.restlet.resource
Methods in org.restlet.resource that return ApplicationMethods in org.restlet.resource with parameters of type ApplicationModifier and TypeMethodDescriptionvoidResource.setApplication(Application application) Sets the parent application. -
Uses of Application in org.restlet.security
Methods in org.restlet.security that return ApplicationMethods in org.restlet.security with parameters of type ApplicationModifier and TypeMethodDescriptionMemoryRealm.findRoles(Application application, Set<Group> userGroups) Finds the roles mapped to given user groups.MemoryRealm.findRoles(Application application, Group userGroup) Finds the roles mapped to a given user group.MemoryRealm.findRoles(Application application, User user) Finds the roles mapped to a given user, for a specific application.static RoleRole.get(Application application, String name) Finds an existing role or creates a new one if needed.static RoleRole.get(Application application, String name, String description) Finds an existing role or creates a new one if needed.voidMemoryRealm.map(User user, Application application, String roleName) Maps a user defined in a component to a role defined in the application.voidRole.setApplication(Application application) Sets the parent application.voidMemoryRealm.unmap(Group group, Application application, String roleName) Unmaps a group defined in a component from a role defined in the application.voidMemoryRealm.unmap(User user, Application application, String roleName) Unmaps a user defined in a component from a role defined in the application.Constructors in org.restlet.security with parameters of type ApplicationModifierConstructorDescriptionRole(Application application, String name) Constructor.Role(Application application, String name, String description) Constructor. -
Uses of Application in org.restlet.util
Methods in org.restlet.util that return Application