Uses of Class
org.restlet.data.Tag
-
Packages that use Tag Package Description org.restlet.data Information exchanged by components.org.restlet.engine.header Supports HTTP header parsing and formatting.org.restlet.ext.jaxrs.internal.util org.restlet.representation Common representation data elements.org.restlet.util Various utility classes. -
-
Uses of Tag in org.restlet.data
Fields in org.restlet.data declared as Tag Modifier and Type Field Description static TagTag. ALLTag matching any other tag, used in call's condition data.private TagConditions. rangeTagThe "if-range" condition as an entity tag.Fields in org.restlet.data with type parameters of type Tag Modifier and Type Field Description private java.util.List<Tag>Conditions. matchThe "if-match" condition.private java.util.List<Tag>Conditions. noneMatchThe "if-none-match" condition.Methods in org.restlet.data that return Tag Modifier and Type Method Description TagConditions. getRangeTag()Returns the range condition based on the entity tag of the requested variant.
Note that when used with HTTP connectors, this property maps to the "If-Range" header.static TagTag. parse(java.lang.String httpTag)Parses a tag formatted as defined by the HTTP standard.Methods in org.restlet.data that return types with arguments of type Tag Modifier and Type Method Description java.util.List<Tag>Conditions. getMatch()Returns the modifiable list of tags that must be matched.java.util.List<Tag>Conditions. getNoneMatch()Returns the modifiable list of tags that mustn't match.Methods in org.restlet.data with parameters of type Tag Modifier and Type Method Description StatusConditions. getRangeStatus(Tag tag, java.util.Date modificationDate)Returns the range conditional status of an entity.StatusConditions. getStatus(Method method, boolean entityExists, Tag tag, java.util.Date modificationDate)Returns the conditional status of a variant using a given method.voidConditions. setRangeTag(Tag rangeTag)Sets the range condition based on the entity tag of the requested variant.
Note that when used with HTTP connectors, this property maps to the "If-Range" header.Method parameters in org.restlet.data with type arguments of type Tag Modifier and Type Method Description voidConditions. setMatch(java.util.List<Tag> tags)Sets the modifiable list of tags that must be matched.
Note that when used with HTTP connectors, this property maps to the "If-Match" header.voidConditions. setNoneMatch(java.util.List<Tag> tags)Sets the modifiable list of tags that mustn't match. -
Uses of Tag in org.restlet.engine.header
Methods in org.restlet.engine.header that return Tag Modifier and Type Method Description TagTagReader. readValue()Methods in org.restlet.engine.header that return types with arguments of type Tag Modifier and Type Method Description HeaderWriter<Tag>TagWriter. append(Tag tag)Methods in org.restlet.engine.header with parameters of type Tag Modifier and Type Method Description HeaderWriter<Tag>TagWriter. append(Tag tag)static java.lang.StringTagWriter. write(Tag tag)Writes a tag.Method parameters in org.restlet.engine.header with type arguments of type Tag Modifier and Type Method Description static voidTagReader. addValues(Header header, java.util.Collection<Tag> collection)Adds values to the given collection.static java.lang.StringTagWriter. write(java.util.List<Tag> tags)Writes a list of tags. -
Uses of Tag in org.restlet.ext.jaxrs.internal.util
Methods in org.restlet.ext.jaxrs.internal.util that return Tag Modifier and Type Method Description static TagConverter. toRestletTag(javax.ws.rs.core.EntityTag jaxRsEntityTag)Deprecated.Converts a JAX-RS-EntityTag to a Restlet-EntityTagMethods in org.restlet.ext.jaxrs.internal.util with parameters of type Tag Modifier and Type Method Description static javax.ws.rs.core.EntityTagConverter. toJaxRsEntityTag(Tag restletEntityTag)Deprecated.Converts a Restlet-EntityTag to a JAX-RS-EntityTag -
Uses of Tag in org.restlet.representation
Fields in org.restlet.representation declared as Tag Modifier and Type Field Description private TagRepresentationInfo. tagThe tag.Methods in org.restlet.representation that return Tag Modifier and Type Method Description TagRepresentationInfo. getTag()Returns the tag.
Note that when used with HTTP connectors, this property maps to the "ETag" header.Methods in org.restlet.representation with parameters of type Tag Modifier and Type Method Description voidRepresentationInfo. setTag(Tag tag)Sets the tag.
Note that when used with HTTP connectors, this property maps to the "ETag" header.Constructors in org.restlet.representation with parameters of type Tag Constructor Description Representation(MediaType mediaType, java.util.Date modificationDate, Tag tag)Constructor.Representation(MediaType mediaType, Tag tag)Constructor.Representation(Variant variant, java.util.Date modificationDate, Tag tag)Constructor from a variant.Representation(Variant variant, Tag tag)Constructor from a variant.RepresentationInfo(MediaType mediaType, java.util.Date modificationDate, Tag tag)Constructor.RepresentationInfo(MediaType mediaType, Tag tag)Constructor.RepresentationInfo(Variant variant, java.util.Date modificationDate, Tag tag)Constructor from a variant.RepresentationInfo(Variant variant, Tag tag)Constructor from a variant. -
Uses of Tag in org.restlet.util
Methods in org.restlet.util that return Tag Modifier and Type Method Description TagWrapperRepresentation. getTag()Methods in org.restlet.util with parameters of type Tag Modifier and Type Method Description voidWrapperRepresentation. setTag(Tag tag)
-