Uses of Class
org.restlet.Application
-
Packages that use Application Package Description org.restlet Core classes of the API.org.restlet.engine.application Supports Restlet applications.org.restlet.ext.guice Integration with Google Guice @minor-version@.org.restlet.ext.jaxrs Support for JAX-RS API.org.restlet.ext.wadl Support the WADL specification.org.restlet.resource Client and server resource classes.org.restlet.security Classes related to security.org.restlet.util Various utility classes. -
-
Uses of Application in org.restlet
Fields in org.restlet with type parameters of type Application Modifier and Type Field Description private static java.lang.ThreadLocal<Application>Application. CURRENTMethods in org.restlet that return Application Modifier and Type Method Description ApplicationRestlet. 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 Application Modifier and Type Method Description static voidApplication. setCurrent(Application application)Sets the context to associated with the current thread. -
Uses of Application in org.restlet.engine.application
Constructors in org.restlet.engine.application with parameters of type Application Constructor Description ApplicationHelper(Application application)Constructor. -
Uses of Application in org.restlet.ext.guice
Subclasses of Application in org.restlet.ext.guice Modifier and Type Class Description classResourceInjectingApplicationApplication with support for creating Router instances that arrange for member injection of resource instances.Methods in org.restlet.ext.guice that return types with arguments of type Application Modifier and Type Method Description protected com.google.inject.Provider<Application>RestletGuice.Module. newApplicationProvider()Creates aProviderr for the currentApplication. -
Uses of Application in org.restlet.ext.jaxrs
Subclasses of Application in org.restlet.ext.jaxrs Modifier and Type Class Description classJaxRsApplicationDeprecated.Will be removed in next minor release. -
Uses of Application in org.restlet.ext.wadl
Subclasses of Application in org.restlet.ext.wadl Modifier and Type Class Description classWadlApplicationDeprecated.Will be removed in next major release. -
Uses of Application in org.restlet.resource
Fields in org.restlet.resource declared as Application Modifier and Type Field Description private ApplicationResource. applicationThe parent application.Methods in org.restlet.resource that return Application Modifier and Type Method Description ApplicationResource. getApplication()Returns the parent application.Methods in org.restlet.resource with parameters of type Application Modifier and Type Method Description voidResource. setApplication(Application application)Sets the parent application. -
Uses of Application in org.restlet.security
Fields in org.restlet.security declared as Application Modifier and Type Field Description private ApplicationRole. applicationThe parent application.Methods in org.restlet.security that return Application Modifier and Type Method Description ApplicationRole. getApplication()Returns the parent application.Methods in org.restlet.security with parameters of type Application Modifier and Type Method Description java.util.Set<Role>MemoryRealm. findRoles(Application application, java.util.Set<Group> userGroups)Finds the roles mapped to given user groups.java.util.Set<Role>MemoryRealm. findRoles(Application application, Group userGroup)Finds the roles mapped to a given user group.java.util.Set<Role>MemoryRealm. findRoles(Application application, User user)Finds the roles mapped to a given user, for a specific application.static RoleRole. get(Application application, java.lang.String name)Finds an existing role or creates a new one if needed.static RoleRole. get(Application application, java.lang.String name, java.lang.String description)Finds an existing role or creates a new one if needed.voidMemoryRealm. map(User user, Application application, java.lang.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, java.lang.String roleName)Unmaps a group defined in a component from a role defined in the application.voidMemoryRealm. unmap(User user, Application application, java.lang.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 Application Constructor Description Role(Application application, java.lang.String name)Constructor.Role(Application application, java.lang.String name, java.lang.String description)Constructor. -
Uses of Application in org.restlet.util
Methods in org.restlet.util that return Application Modifier and Type Method Description ApplicationWrapperRestlet. getApplication()
-