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 ETag
CachedHttpRequest. 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 ETag
PathResourceManager.ETagFunction. generate(java.nio.file.Path path)
Generates anETag
for the providedPath
.ETag
CachedResource. getETag()
ETag
PathResource. getETag()
ETag
Resource. getETag()
ETag
URLResource. getETag()
Constructors in io.undertow.server.handlers.resource with parameters of type ETag Constructor Description PathResource(java.nio.file.Path file, PathResourceManager manager, java.lang.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 ETag
ETagUtils. getETag(HttpServerExchange exchange)
Methods in io.undertow.util that return types with arguments of type ETag Modifier and Type Method Description static java.util.List<ETag>
ETagUtils. parseETagList(java.lang.String header)
Methods in io.undertow.util with parameters of type ETag Modifier and Type Method Description static boolean
ETagUtils. handleIfMatch(HttpServerExchange exchange, ETag etag, boolean allowWeak)
Handles the if-match header.static boolean
ETagUtils. handleIfMatch(java.lang.String ifMatch, ETag etag, boolean allowWeak)
Handles the if-match header.static boolean
ETagUtils. handleIfNoneMatch(HttpServerExchange exchange, ETag etag, boolean allowWeak)
Handles the if-none-match header.static boolean
ETagUtils. handleIfNoneMatch(java.lang.String ifNoneMatch, ETag etag, boolean allowWeak)
Handles the if-none-match header.Method parameters in io.undertow.util with type arguments of type ETag Modifier and Type Method Description static boolean
ETagUtils. handleIfMatch(HttpServerExchange exchange, java.util.List<ETag> etags, boolean allowWeak)
Handles the if-match header.static boolean
ETagUtils. handleIfMatch(java.lang.String ifMatch, java.util.List<ETag> etags, boolean allowWeak)
Handles the if-match header.static boolean
ETagUtils. handleIfNoneMatch(HttpServerExchange exchange, java.util.List<ETag> etags, boolean allowWeak)
Handles the if-none-match header.static boolean
ETagUtils. handleIfNoneMatch(java.lang.String ifNoneMatch, java.util.List<ETag> etags, boolean allowWeak)
Handles the if-none-match header.
-