Package org.apache.abdera.protocol
Interface Request
-
- All Superinterfaces:
Message,ProtocolConstants
- All Known Subinterfaces:
RequestContext
- All Known Implementing Classes:
AbstractRequest,AbstractRequestContext,RequestContextWrapper,RequestOptions,ServletRequestContext
@Deprecated public interface Request extends Message
Deprecated.Legacy AEM 6.x API.A protocol request. This is used as a base for both server and client requests
-
-
Field Summary
-
Fields inherited from interface org.apache.abdera.protocol.util.ProtocolConstants
NOCACHE, NOSTORE, NOTRANSFORM, ONLYIFCACHED, PRIVATE, PROXYREVALIDATE, PUBLIC, REVALIDATE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetAccept()Deprecated.Get the value of the Accept headerStringgetAcceptCharset()Deprecated.Get the value of the Accept-Charset headerStringgetAcceptEncoding()Deprecated.Get the value of the Accept-Encoding headerStringgetAcceptLanguage()Deprecated.Get the value of the Accept-Language headerStringgetAuthorization()Deprecated.Get the value of the Authorization headerorg.apache.abdera.util.EntityTag[]getIfMatch()Deprecated.Get a listing of Etags from the If-Match headerDategetIfModifiedSince()Deprecated.Get the value of the If-Modified-Since headerorg.apache.abdera.util.EntityTag[]getIfNoneMatch()Deprecated.Get a listing of ETags from the If-None-Match headerDategetIfUnmodifiedSince()Deprecated.Get the value of the If-Unmodified-Since headerlonggetMaxStale()Deprecated.Get the max-stale value from the Cache-Control headerlonggetMinFresh()Deprecated.Get the min-fresh value from the Cache-Control headerbooleanisOnlyIfCached()Deprecated.True if the only-if-cached directive is set in the Cache-Control header-
Methods inherited from interface org.apache.abdera.protocol.Message
getCacheControl, getContentLanguage, getContentLocation, getContentType, getDateHeader, getDecodedHeader, getDecodedHeaders, getHeader, getHeaderNames, getHeaders, getMaxAge, getSlug, isNoCache, isNoStore, isNoTransform
-
-
-
-
Method Detail
-
getAccept
String getAccept()
Deprecated.Get the value of the Accept header
-
getAcceptCharset
String getAcceptCharset()
Deprecated.Get the value of the Accept-Charset header
-
getAcceptEncoding
String getAcceptEncoding()
Deprecated.Get the value of the Accept-Encoding header
-
getAcceptLanguage
String getAcceptLanguage()
Deprecated.Get the value of the Accept-Language header
-
getAuthorization
String getAuthorization()
Deprecated.Get the value of the Authorization header
-
getIfMatch
org.apache.abdera.util.EntityTag[] getIfMatch()
Deprecated.Get a listing of Etags from the If-Match header
-
getIfModifiedSince
Date getIfModifiedSince()
Deprecated.Get the value of the If-Modified-Since header
-
getIfNoneMatch
org.apache.abdera.util.EntityTag[] getIfNoneMatch()
Deprecated.Get a listing of ETags from the If-None-Match header
-
getIfUnmodifiedSince
Date getIfUnmodifiedSince()
Deprecated.Get the value of the If-Unmodified-Since header
-
getMaxStale
long getMaxStale()
Deprecated.Get the max-stale value from the Cache-Control header
-
getMinFresh
long getMinFresh()
Deprecated.Get the min-fresh value from the Cache-Control header
-
isOnlyIfCached
boolean isOnlyIfCached()
Deprecated.True if the only-if-cached directive is set in the Cache-Control header
-
-