Class EntityTag
java.lang.Object
org.apache.tomcat.util.http.parser.EntityTag
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Boolean
compareEntityTag
(StringReader input, boolean compareWeak, String resourceETag) Parse the given input as (per RFC 7232) 1#entity-tag.
-
Constructor Details
-
EntityTag
public EntityTag()
-
-
Method Details
-
compareEntityTag
public static Boolean compareEntityTag(StringReader input, boolean compareWeak, String resourceETag) throws IOException Parse the given input as (per RFC 7232) 1#entity-tag. Compare an ETag header with a resource ETag as described in RFC 7232 section 2.3.2.- Parameters:
input
- The input to parsecompareWeak
- Use weak comparison e.g. match "etag" with W/"etag"resourceETag
- Resource's ETag- Returns:
true
if ETag matches,false
if ETag doesn't match ornull
if the input is invalid- Throws:
IOException
- If an I/O occurs during the parsing
-