Uses of Class
org.restlet.client.representation.Representation
-
Packages that use Representation Package Description org.restlet.client Core classes of the API.org.restlet.client.data Information exchanged by components.org.restlet.client.representation Common representation data elements.org.restlet.client.resource Client and server resource classes.org.restlet.client.util Various utility classes. -
-
Uses of Representation in org.restlet.client
Methods in org.restlet.client that return Representation Modifier and Type Method Description RepresentationMessage. getEntity()Returns the entity representation.Methods in org.restlet.client with parameters of type Representation Modifier and Type Method Description voidMessage. setEntity(Representation entity)Sets the entity representation.Constructors in org.restlet.client with parameters of type Representation Constructor Description Message(Representation entity)Constructor.Request(Method method, java.lang.String resourceUri, Representation entity)Constructor.Request(Method method, Reference resourceRef, Representation entity)Constructor. -
Uses of Representation in org.restlet.client.data
Methods in org.restlet.client.data that return Representation Modifier and Type Method Description RepresentationReferenceList. getTextRepresentation()Returns a representation of the list in the "text/uri-list" format.RepresentationForm. getWebRepresentation()Returns the form as a Web representation (MediaType.APPLICATION_WWW_FORM).RepresentationForm. getWebRepresentation(CharacterSet characterSet)Returns the form as a Web representation (MediaType.APPLICATION_WWW_FORM).RepresentationReferenceList. getWebRepresentation()Returns a representation of the list in "text/html" format.Constructors in org.restlet.client.data with parameters of type Representation Constructor Description Form(Representation webForm)Constructor.Form(Representation webForm, boolean decode)Constructor.ReferenceList(Representation uriList)Constructor from a "text/uri-list" representation. -
Uses of Representation in org.restlet.client.representation
Subclasses of Representation in org.restlet.client.representation Modifier and Type Class Description classCharacterRepresentationRepresentation based on a BIO character stream.classEmptyRepresentationEmpty representation with no content.classInputRepresentationTransient representation based on a BIO input stream.classObjectRepresentation<T>Representation based on a serializable Java object.classStreamRepresentationRepresentation based on a BIO stream.classStringRepresentationRepresents an Unicode string that can be converted to any character set supported by Java. -
Uses of Representation in org.restlet.client.resource
Methods in org.restlet.client.resource that return Representation Modifier and Type Method Description RepresentationClientResource. delete()Deletes the target resource and all its representations.RepresentationClientResource. delete(MediaType mediaType)Deletes the target resource and all its representations.RepresentationClientResource. get()Represents the resource using content negotiation to select the best variant based on the client preferences.RepresentationClientResource. get(MediaType mediaType)Represents the resource using a given media type.RepresentationResource. getRequestEntity()Returns the request entity representation.RepresentationResource. getResponseEntity()Returns the response entity representation.RepresentationClientResource. handle()Handles the call by invoking the next handler.protected RepresentationClientResource. handle(Method method)Handles the call by cloning the prototype request, setting the method and entity.protected RepresentationClientResource. handle(Method method, MediaType mediaType)Handles the call by cloning the prototype request, setting the method and entity.protected RepresentationClientResource. handle(Method method, Representation entity)Handles the call by cloning the prototype request, setting the method and entity.protected RepresentationClientResource. handle(Method method, Representation entity, ClientInfo clientInfo)Handles the call by cloning the prototype request, setting the method and entity.protected RepresentationClientResource. handle(Method method, Representation entity, MediaType mediaType)Handles the call by cloning the prototype request, setting the method and entity.abstract RepresentationResource. handle()Handles the call composed of the current context, request and response.RepresentationClientResource. handleInbound(Response response)Handles the inbound call.RepresentationClientResource. head()Represents the resource using content negotiation to select the best variant based on the client preferences.RepresentationClientResource. head(MediaType mediaType)Represents the resource using a given media type.RepresentationClientResource. options()Describes the resource using content negotiation to select the best variant based on the client preferences.RepresentationClientResource. options(MediaType mediaType)Describes the resource using a given media type.RepresentationClientResource. patch(java.lang.Object entity)Patches a resource with the given object as delta state.RepresentationClientResource. patch(java.lang.Object entity, MediaType mediaType)Patches a resource with the given object as delta state.RepresentationClientResource. patch(Representation entity)Patches a resource with the given representation as delta state.RepresentationClientResource. post(java.lang.Object entity)Posts an object entity.RepresentationClientResource. post(java.lang.Object entity, MediaType mediaType)Posts an object entity.RepresentationClientResource. post(Representation entity)Posts a representation.RepresentationClientResource. put(java.lang.Object entity)Puts an object entity.RepresentationClientResource. put(java.lang.Object entity, MediaType mediaType)Puts an object entity.RepresentationClientResource. put(Representation entity)Creates or updates a resource with the given representation as new state to be stored.RepresentationResource. toRepresentation(java.lang.Object source)Converts an object into a representation based on the default converter service variant.RepresentationResource. toRepresentation(java.lang.Object source, MediaType target)Converts an object into a representation based on a given media type.RepresentationResource. toRepresentation(java.lang.Object source, Variant target)Converts an object into a representation based on client preferences.Methods in org.restlet.client.resource with parameters of type Representation Modifier and Type Method Description protected RepresentationClientResource. handle(Method method, Representation entity)Handles the call by cloning the prototype request, setting the method and entity.protected RepresentationClientResource. handle(Method method, Representation entity, ClientInfo clientInfo)Handles the call by cloning the prototype request, setting the method and entity.protected RepresentationClientResource. handle(Method method, Representation entity, MediaType mediaType)Handles the call by cloning the prototype request, setting the method and entity.RepresentationClientResource. patch(Representation entity)Patches a resource with the given representation as delta state.RepresentationClientResource. post(Representation entity)Posts a representation.RepresentationClientResource. put(Representation entity)Creates or updates a resource with the given representation as new state to be stored. -
Uses of Representation in org.restlet.client.util
Subclasses of Representation in org.restlet.client.util Modifier and Type Class Description classWrapperRepresentationRepresentation wrapper.Methods in org.restlet.client.util that return Representation Modifier and Type Method Description RepresentationWrapperRequest. getEntity()Returns the entity representation.RepresentationWrapperResponse. getEntity()Returns the entity representation.RepresentationWrapperRepresentation. getWrappedRepresentation()Returns the wrapped representation.Methods in org.restlet.client.util with parameters of type Representation Modifier and Type Method Description voidWrapperRequest. setEntity(Representation entity)Sets the entity representation.voidWrapperResponse. setEntity(Representation entity)Sets the entity representation.Constructors in org.restlet.client.util with parameters of type Representation Constructor Description WrapperRepresentation(Representation wrappedRepresentation)Constructor.
-