Class Conditions

java.lang.Object
org.restlet.data.Conditions

public final class Conditions extends Object
Set of conditions applying to a request. This is equivalent to the HTTP conditional headers.
Author:
Jerome Louvel
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the modifiable list of tags that must be matched.
    Returns the condition based on the modification date of the requested variant.

    Note that when used with HTTP connectors, this property maps to the "If-Modified-Since" header.
    Returns the modifiable list of tags that mustn't match.
    Returns the range condition based on the modification date of the requested variant.

    Note that when used with HTTP connectors, this property maps to the "If-Range" header.
    getRangeStatus(Tag tag, Date modificationDate)
    Returns the range conditional status of an entity.
    getRangeStatus(RepresentationInfo representationInfo)
    Returns the range conditional status of an entity.
    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.
    getStatus(Method method, boolean entityExists, Tag tag, Date modificationDate)
    Returns the conditional status of a variant using a given method.
    getStatus(Method method, RepresentationInfo representationInfo)
    Returns the conditional status of a variant using a given method.
    Returns the condition based on the modification date of the requested variant.

    Note that when used with HTTP connectors, this property maps to the "If-Unmodified-Since" header.
    boolean
    Indicates if there are some conditions set.
    boolean
    Indicates if there are some range conditions set.
    void
    setMatch(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.
    void
    Sets the condition based on the modification date of the requested variant.

    Note that when used with HTTP connectors, this property maps to the "If-Modified-Since" header.
    void
    Sets the modifiable list of tags that mustn't match.
    void
    setRangeDate(Date rangeDate)
    Sets the range condition based on the modification date of the requested variant.

    Note that when used with HTTP connectors, this property maps to the "If-Range" header.
    void
    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.
    void
    Sets the condition based on the modification date of the requested variant.

    Note that when used with HTTP connectors, this property maps to the "If-Unmodified-Since" header.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Conditions

      public Conditions()
      Constructor.
  • Method Details

    • getMatch

      public List<Tag> getMatch()
      Returns the modifiable list of tags that must be matched. Creates a new instance if no one has been set.

      Note that when used with HTTP connectors, this property maps to the "If-Match" header.
      Returns:
      The "if-match" condition.
    • getModifiedSince

      public Date getModifiedSince()
      Returns the condition based on the modification date of the requested variant.

      Note that when used with HTTP connectors, this property maps to the "If-Modified-Since" header.
      Returns:
      The condition date.
    • getNoneMatch

      public List<Tag> getNoneMatch()
      Returns the modifiable list of tags that mustn't match. Creates a new instance if no one has been set.

      Note that when used with HTTP connectors, this property maps to the "If-None-Match" header.
      Returns:
      The list of tags that mustn't match.
    • getRangeDate

      public Date getRangeDate()
      Returns the range condition based on the modification date of the requested variant.

      Note that when used with HTTP connectors, this property maps to the "If-Range" header.
      Returns:
      The range condition date.
    • getRangeStatus

      public Status getRangeStatus(RepresentationInfo representationInfo)
      Returns the range conditional status of an entity.
      Parameters:
      representationInfo - The representation information that will be tested.
      Returns:
      the status of the response.
    • getRangeStatus

      public Status getRangeStatus(Tag tag, Date modificationDate)
      Returns the range conditional status of an entity.
      Parameters:
      tag - The tag of the entity.
      modificationDate - The modification date of the entity.
      Returns:
      The status of the response.
    • getRangeTag

      public Tag 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.
      Returns:
      The range entity tag.
    • getStatus

      public Status getStatus(Method method, boolean entityExists, Tag tag, Date modificationDate)
      Returns the conditional status of a variant using a given method.
      Parameters:
      method - The request method.
      entityExists - Indicates if the entity exists.
      tag - The tag.
      modificationDate - The modification date.
      Returns:
      Null if the requested method can be performed, the status of the response otherwise.
    • getStatus

      public Status getStatus(Method method, RepresentationInfo representationInfo)
      Returns the conditional status of a variant using a given method.
      Parameters:
      method - The request method.
      representationInfo - The representation information that will be tested.
      Returns:
      Null if the requested method can be performed, the status of the response otherwise.
    • getUnmodifiedSince

      public Date getUnmodifiedSince()
      Returns the condition based on the modification date of the requested variant.

      Note that when used with HTTP connectors, this property maps to the "If-Unmodified-Since" header.
      Returns:
      The condition date.
    • hasSome

      public boolean hasSome()
      Indicates if there are some conditions set.
      Returns:
      True if there are some conditions set.
    • hasSomeRange

      public boolean hasSomeRange()
      Indicates if there are some range conditions set.
      Returns:
      True if there are some range conditions set.
    • setMatch

      public void setMatch(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.
      Parameters:
      tags - The "if-match" condition.
    • setModifiedSince

      public void setModifiedSince(Date date)
      Sets the condition based on the modification date of the requested variant.

      Note that when used with HTTP connectors, this property maps to the "If-Modified-Since" header.
      Parameters:
      date - The modification date.
    • setNoneMatch

      public void setNoneMatch(List<Tag> tags)
      Sets the modifiable list of tags that mustn't match. Creates a new instance if no one has been set.

      Note that when used with HTTP connectors, this property maps to the "If-None-Match" header.
      Parameters:
      tags - The list of tags that mustn't match.
    • setRangeDate

      public void setRangeDate(Date rangeDate)
      Sets the range condition based on the modification date of the requested variant.

      Note that when used with HTTP connectors, this property maps to the "If-Range" header.
      Parameters:
      rangeDate - The date of the range condition.
    • setRangeTag

      public void 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.
      Parameters:
      rangeTag - The entity tag of the range condition.
    • setUnmodifiedSince

      public void setUnmodifiedSince(Date date)
      Sets the condition based on the modification date of the requested variant.

      Note that when used with HTTP connectors, this property maps to the "If-Unmodified-Since" header.
      Parameters:
      date - The condition date.