Uses of Class
org.restlet.Context
- 
Packages that use Context Package Description org.restlet Core classes of the API.org.restlet.resource Client and server resource classes.org.restlet.routing Classes related to call routing.org.restlet.security Classes related to security.org.restlet.service Services used by applications and components.org.restlet.util Various utility classes. - 
- 
Uses of Context in org.restlet
Methods in org.restlet that return Context Modifier and Type Method Description ContextContext. createChildContext()Creates a protected child context.ContextRestlet. getContext()Returns the context.static ContextContext. getCurrent()Returns the context associated to the currentRestlet.Methods in org.restlet with parameters of type Context Modifier and Type Method Description voidApplication. setContext(Context context)voidComponent. setContext(Context context)voidRestlet. setContext(Context context)Sets the context.static voidContext. setCurrent(Context context)Sets the context to associated with the current thread.Constructors in org.restlet with parameters of type Context Constructor Description Application(Context context)Constructor.Client(Context context, java.util.List<Protocol> protocols)Constructor.Client(Context context, java.util.List<Protocol> protocols, java.lang.String helperClass)Constructor.Client(Context context, Protocol protocol)Constructor.Connector(Context context)Constructor.Connector(Context context, java.util.List<Protocol> protocols)Constructor.Restlet(Context context)Constructor with the Restlet's context which can be the parent's application context, but shouldn't be the parent Component's context for security reasons.Server(Context context, java.util.List<Protocol> protocols, int port, Restlet next)Constructor.Server(Context context, java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet next)Constructor.Server(Context context, java.util.List<Protocol> protocols, java.lang.String address, int port, Restlet next, java.lang.String helperClass)Constructor.Server(Context context, Protocol protocol)Constructor.Server(Context context, Protocol protocol, int port)Constructor.Server(Context context, Protocol protocol, int port, java.lang.Class<? extends ServerResource> nextClass)Constructor.Server(Context context, Protocol protocol, int port, Restlet next)Constructor.Server(Context context, Protocol protocol, java.lang.Class<? extends ServerResource> nextClass)Constructor.Server(Context context, Protocol protocol, java.lang.String address, int port, Restlet next)Constructor.Server(Context context, Protocol protocol, Restlet next)Constructor using the protocol's default port. - 
Uses of Context in org.restlet.resource
Methods in org.restlet.resource that return Context Modifier and Type Method Description ContextResource. getContext()Returns the current context.Methods in org.restlet.resource with parameters of type Context Modifier and Type Method Description static <T> TClientResource. create(Context context, Reference reference, java.lang.Class<? extends T> resourceInterface)Creates a client resource that proxy calls to the given Java interface into Restlet method calls.static FinderFinder. createFinder(java.lang.Class<? extends ServerResource> targetClass, java.lang.Class<? extends Finder> finderClass, Context context, java.util.logging.Logger logger)Creates a new finder instance based on the "targetClass" property.voidResource. init(Context context, Request request, Response response)Initialization method setting the environment of the current resource instance.Constructors in org.restlet.resource with parameters of type Context Constructor Description ClientResource(Context context, java.lang.String uri)Constructor.ClientResource(Context context, java.net.URI uri)Constructor.ClientResource(Context context, Method method, java.lang.String uri)Constructor.ClientResource(Context context, Method method, java.net.URI uri)Constructor.ClientResource(Context context, Method method, Reference reference)Constructor.ClientResource(Context context, Reference reference)Constructor.ClientResource(Context context, Request request)Constructor.ClientResource(Context context, Request request, Response response)Constructor.Directory(Context context, java.lang.String rootUri)Constructor.Directory(Context context, Reference rootLocalReference)Constructor.Finder(Context context)Constructor.Finder(Context context, java.lang.Class<? extends ServerResource> targetClass)Constructor. - 
Uses of Context in org.restlet.routing
Methods in org.restlet.routing with parameters of type Context Modifier and Type Method Description voidVirtualHost. setContext(Context parentContext)Constructors in org.restlet.routing with parameters of type Context Constructor Description Extractor(Context context)Constructor.Extractor(Context context, Restlet next)Constructor.Filter(Context context)Constructor.Filter(Context context, Restlet next)Constructor.Redirector(Context context, java.lang.String targetTemplate)Constructor for the client dispatcher mode.Redirector(Context context, java.lang.String targetPattern, int mode)Constructor.Router(Context context)Constructor.Validator(Context context)Constructor.Validator(Context context, Restlet next)Constructor.VirtualHost(Context parentContext)Constructor.VirtualHost(Context parentContext, java.lang.String hostDomain, java.lang.String hostPort, java.lang.String hostScheme, java.lang.String resourceDomain, java.lang.String resourcePort, java.lang.String resourceScheme, java.lang.String serverAddress, java.lang.String serverPort)Constructor. - 
Uses of Context in org.restlet.security
Constructors in org.restlet.security with parameters of type Context Constructor Description Authenticator(Context context)Constructor setting the mode to "required".Authenticator(Context context, boolean optional)Constructor using the context's default enroler.Authenticator(Context context, boolean multiAuthenticating, boolean optional, Enroler enroler)Constructor.Authenticator(Context context, boolean optional, Enroler enroler)Constructor.CertificateAuthenticator(Context context)ChallengeAuthenticator(Context context, boolean optional, ChallengeScheme challengeScheme, java.lang.String realm)Constructor using the context's default verifier.ChallengeAuthenticator(Context context, boolean optional, ChallengeScheme challengeScheme, java.lang.String realm, Verifier verifier)Constructor.ChallengeAuthenticator(Context context, ChallengeScheme challengeScheme, java.lang.String realm)Constructor setting the optional property to false. - 
Uses of Context in org.restlet.service
Methods in org.restlet.service that return Context Modifier and Type Method Description ContextService. getContext()Returns the context.Methods in org.restlet.service with parameters of type Context Modifier and Type Method Description FilterCorsService. createInboundFilter(Context context)FilterDecoderService. createInboundFilter(Context context)FilterEncoderService. createInboundFilter(Context context)FilterLogService. createInboundFilter(Context context)FilterRangeService. createInboundFilter(Context context)FilterService. createInboundFilter(Context context)Create the filter that should be invoked for incoming calls.FilterStatusService. createInboundFilter(Context context)FilterTunnelService. createInboundFilter(Context context)FilterDecoderService. createOutboundFilter(Context context)FilterEncoderService. createOutboundFilter(Context context)FilterService. createOutboundFilter(Context context)Create the filter that should be invoked for outgoing calls.voidService. setContext(Context context)Sets the context. - 
Uses of Context in org.restlet.util
Methods in org.restlet.util that return Context Modifier and Type Method Description ContextClientList. getContext()Returns the context.ContextServerList. getContext()Returns the context.ContextServiceList. getContext()Returns the context.ContextWrapperRestlet. getContext()Methods in org.restlet.util with parameters of type Context Modifier and Type Method Description voidClientList. setContext(Context context)Sets the context.voidServerList. setContext(Context context)Sets the context.voidServiceList. setContext(Context context)Sets the context.voidWrapperRestlet. setContext(Context context)Constructors in org.restlet.util with parameters of type Context Constructor Description ClientList(Context context)Constructor.ServerList(Context context, Restlet next)Constructor.ServiceList(Context context)Constructor. 
 -