Package org.glassfish.jersey.spi
Interface HeaderDelegateProvider<T>
-
- Type Parameters:
T
- the type of the header.
- All Superinterfaces:
javax.ws.rs.ext.RuntimeDelegate.HeaderDelegate<T>
- All Known Implementing Classes:
CacheControlProvider
,CookieProvider
,DateProvider
,EntityTagProvider
,LinkProvider
,LocaleProvider
,MediaTypeProvider
,NewCookieProvider
,StringHeaderProvider
,UriProvider
@Contract public interface HeaderDelegateProvider<T> extends javax.ws.rs.ext.RuntimeDelegate.HeaderDelegate<T>
A provider that supports the conversion of an HTTP header, of type T, to and from aString
.An implementation (a service-provider) identifies itself by placing a provider-configuration file (if not already present), "org.glassfish.jersey.header.spi.HeaderDelegateProvider" in the resource directory META-INF/services, and including the fully qualified service-provider-class of the implementation in the file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
supports(java.lang.Class<?> type)
Ascertain if the Provider supports a particular type.
-