Package org.restlet
Interface Uniform
-
- All Known Implementing Classes:
Application
,Authenticator
,Authorizer
,CertificateAuthenticator
,ChallengeAuthenticator
,Client
,Component
,ConfidentialAuthorizer
,Connector
,Directory
,Extractor
,Filter
,Finder
,MethodAuthorizer
,Redirector
,Restlet
,RoleAuthorizer
,Route
,Router
,Server
,TemplateRoute
,Validator
,VirtualHost
,WrapperRestlet
public interface Uniform
Uniform REST interface. "The central feature that distinguishes the REST architectural style from other network-based styles is its emphasis on a uniform interface between components. By applying the software engineering principle of generality to the component interface, the overall system architecture is simplified and the visibility of interactions is improved. Implementations are decoupled from the services they provide, which encourages independent evolvability." Roy T. Fielding- Author:
- Jerome Louvel
- See Also:
- Source dissertation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(Request request, Response response)
Handles a uniform call.
-