Uses of Class
io.undertow.util.ETag
-
Packages that use ETag Package Description io.undertow.server.handlers.cache io.undertow.server.handlers.resource io.undertow.util -
-
Uses of ETag in io.undertow.server.handlers.cache
Methods in io.undertow.server.handlers.cache that return ETag Modifier and Type Method Description ETagCachedHttpRequest. getEtag() -
Uses of ETag in io.undertow.server.handlers.resource
Methods in io.undertow.server.handlers.resource that return ETag Modifier and Type Method Description ETagPathResourceManager.ETagFunction. generate(Path path)ETagCachedResource. getETag()ETagPathResource. getETag()ETagResource. getETag()ETagURLResource. getETag()Constructors in io.undertow.server.handlers.resource with parameters of type ETag Constructor Description PathResource(Path file, PathResourceManager manager, String path, ETag eTag) -
Uses of ETag in io.undertow.util
Methods in io.undertow.util that return ETag Modifier and Type Method Description static ETagETagUtils. getETag(HttpServerExchange exchange)Methods in io.undertow.util that return types with arguments of type ETag Modifier and Type Method Description static List<ETag>ETagUtils. parseETagList(String header)Methods in io.undertow.util with parameters of type ETag Modifier and Type Method Description static booleanETagUtils. handleIfMatch(HttpServerExchange exchange, ETag etag, boolean allowWeak)Handles the if-match header. returns true if the request should proceed, false otherwisestatic booleanETagUtils. handleIfMatch(String ifMatch, ETag etag, boolean allowWeak)Handles the if-match header. returns true if the request should proceed, false otherwisestatic booleanETagUtils. handleIfNoneMatch(HttpServerExchange exchange, ETag etag, boolean allowWeak)Handles the if-none-match header. returns true if the request should proceed, false otherwisestatic booleanETagUtils. handleIfNoneMatch(String ifNoneMatch, ETag etag, boolean allowWeak)Handles the if-none-match header. returns true if the request should proceed, false otherwiseMethod parameters in io.undertow.util with type arguments of type ETag Modifier and Type Method Description static booleanETagUtils. handleIfMatch(HttpServerExchange exchange, List<ETag> etags, boolean allowWeak)Handles the if-match header. returns true if the request should proceed, false otherwisestatic booleanETagUtils. handleIfMatch(String ifMatch, List<ETag> etags, boolean allowWeak)Handles the if-match header. returns true if the request should proceed, false otherwisestatic booleanETagUtils. handleIfNoneMatch(HttpServerExchange exchange, List<ETag> etags, boolean allowWeak)Handles the if-none-match header. returns true if the request should proceed, false otherwisestatic booleanETagUtils. handleIfNoneMatch(String ifNoneMatch, List<ETag> etags, boolean allowWeak)Handles the if-none-match header. returns true if the request should proceed, false otherwise
-