Uses of Class
org.restlet.Context

Packages that use Context
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
 Context Context.createChildContext()
          Creates a protected child context.
 Context Restlet.getContext()
          Returns the context.
static Context Context.getCurrent()
          Returns the context associated to the current Restlet.
 

Methods in org.restlet with parameters of type Context
 void Application.setContext(Context context)
           
 void Restlet.setContext(Context context)
          Sets the context.
static void Context.setCurrent(Context context)
          Sets the context to associated with the current thread.
 

Constructors in org.restlet with parameters of type Context
Application(Context context)
          Constructor.
Client(Context context, List<Protocol> protocols)
          Constructor.
Client(Context context, List<Protocol> protocols, String helperClass)
          Constructor.
Client(Context context, Protocol protocol)
          Constructor.
Connector(Context context)
          Constructor.
Connector(Context context, 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, List<Protocol> protocols, int port, Restlet next)
          Constructor.
Server(Context context, List<Protocol> protocols, String address, int port, Restlet next)
          Constructor.
Server(Context context, List<Protocol> protocols, String address, int port, Restlet next, String helperClass)
          Constructor.
Server(Context context, Protocol protocol, Class<?> nextClass)
          Constructor.
Server(Context context, Protocol protocol, int port)
          Constructor.
Server(Context context, Protocol protocol, int port, Class<?> nextClass)
          Constructor.
Server(Context context, Protocol protocol, int port, Restlet next)
          Constructor.
Server(Context context, Protocol protocol, Restlet next)
          Constructor using the protocol's default port.
Server(Context context, Protocol protocol, String address, int port, Restlet next)
          Constructor.
 

Uses of Context in org.restlet.resource
 

Methods in org.restlet.resource that return Context
 Context UniformResource.getContext()
          Returns the current context.
 Context Handler.getContext()
          Deprecated. Returns the context.
 

Methods in org.restlet.resource with parameters of type Context
static
<T> T
ClientResource.create(Context context, Reference reference, Class<? extends T> resourceInterface)
          Creates a client resource that proxy calls to the given Java interface into Restlet method calls.
static Finder Finder.createFinder(Class<?> targetClass, Class<? extends Finder> finderClass, Context context, Logger logger)
          Creates a new finder instance based on the "targetClass" property.
 void Resource.init(Context context, Request request, Response response)
          Deprecated. Initialize the resource with its context.
 void UniformResource.init(Context context, Request request, Response response)
          Initialization method setting the environment of the current resource instance.
 void Handler.init(Context context, Request request, Response response)
          Deprecated. Initialize the resource with its context.
 void Handler.setContext(Context context)
          Deprecated. Sets the parent context.
 

Constructors in org.restlet.resource with parameters of type Context
ClientResource(Context context, Method method, Reference reference)
          Constructor.
ClientResource(Context context, Method method, String uri)
          Constructor.
ClientResource(Context context, Method method, URI uri)
          Constructor.
ClientResource(Context context, Reference reference)
          Constructor.
ClientResource(Context context, Request request, Response response)
          Constructor.
ClientResource(Context context, String uri)
          Constructor.
ClientResource(Context context, URI uri)
          Constructor.
Directory(Context context, Reference rootLocalReference)
          Constructor.
Directory(Context context, String rootUri)
          Constructor.
Finder(Context context)
          Constructor.
Finder(Context context, Class<?> targetClass)
          Constructor.
Handler(Context context, Request request, Response response)
          Deprecated. Normal constructor.
Resource(Context context, Request request, Response response)
          Deprecated. Normal constructor.
 

Uses of Context in org.restlet.routing
 

Constructors in org.restlet.routing with parameters of type Context
Extractor(Context context)
          Constructor.
Extractor(Context context, Restlet next)
          Constructor.
Filter(Context context)
          Constructor.
Filter(Context context, Restlet next)
          Constructor.
Redirector(Context context, String targetTemplate)
          Constructor for the client dispatcher mode.
Redirector(Context context, 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, String hostDomain, String hostPort, String hostScheme, String resourceDomain, String resourcePort, String resourceScheme, String serverAddress, String serverPort)
          Constructor.
 

Uses of Context in org.restlet.security
 

Constructors in org.restlet.security with parameters of type Context
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 optional, Enroler enroler)
          Constructor.
ChallengeAuthenticator(Context context, boolean optional, ChallengeScheme challengeScheme, String realm)
          Constructor using the context's default verifier.
ChallengeAuthenticator(Context context, boolean optional, ChallengeScheme challengeScheme, String realm, Verifier verifier)
          Constructor.
ChallengeAuthenticator(Context context, ChallengeScheme challengeScheme, String realm)
          Constructor setting the optional property to false.
Guard(Context context, ChallengeScheme scheme, String realm)
          Deprecated. Constructor.
Guard(Context context, String realm, Collection<String> baseUris, String serverKey)
          Deprecated. Alternate Constructor for HTTP DIGEST authentication scheme.
 

Uses of Context in org.restlet.service
 

Methods in org.restlet.service that return Context
 Context Service.getContext()
          Returns the context.
 

Methods in org.restlet.service with parameters of type Context
 Filter TunnelService.createInboundFilter(Context context)
           
 Filter RangeService.createInboundFilter(Context context)
           
 Filter StatusService.createInboundFilter(Context context)
           
 Filter LogService.createInboundFilter(Context context)
           
 Filter Service.createInboundFilter(Context context)
          Create the filter that should be invoked for incoming calls.
 Filter DecoderService.createInboundFilter(Context context)
           
 Filter Service.createOutboundFilter(Context context)
          Create the filter that should be invoked for outgoing calls.
 void Service.setContext(Context context)
          Sets the context.
 

Uses of Context in org.restlet.util
 

Methods in org.restlet.util that return Context
 Context ClientList.getContext()
          Returns the context.
 Context WrapperRestlet.getContext()
           
 Context ServerList.getContext()
          Returns the context.
 Context ServiceList.getContext()
          Returns the context.
 

Methods in org.restlet.util with parameters of type Context
 void ClientList.setContext(Context context)
          Sets the context.
 void WrapperRestlet.setContext(Context context)
           
 void ServerList.setContext(Context context)
          Sets the context.
 void ServiceList.setContext(Context context)
          Sets the context.
 

Constructors in org.restlet.util with parameters of type Context
ClientList(Context context)
          Constructor.
ServerList(Context context, Restlet next)
          Constructor.
ServiceList(Context context)
          Constructor.
 



Copyright © 2005-2011 Noelios Technologies.