Package org.restlet.resource
Interface ClientProxy
-
public interface ClientProxy
Marker interface for RESTful resource proxies. This allows you to retrieve and manipulate the underlyingClientResource
of a dynamic client proxy generated by theClientResource.create(String, Class)
method for example, or byClientResource.getChild(String, Class)
.- Author:
- Jerome Louvel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClientResource
getClientResource()
Returns the wrapped client resource.
-
-
-
Method Detail
-
getClientResource
ClientResource getClientResource()
Returns the wrapped client resource.- Returns:
- The wrapped client resource.
-
-