Class CookieProvider
- java.lang.Object
-
- org.glassfish.jersey.message.internal.CookieProvider
-
- All Implemented Interfaces:
RuntimeDelegate.HeaderDelegate<Cookie>,HeaderDelegateProvider<Cookie>
@Singleton public class CookieProvider extends Object implements HeaderDelegateProvider<Cookie>
RequestCookieheader delegate provider.- Author:
- Paul Sandoz, Marek Potociar
-
-
Constructor Summary
Constructors Constructor Description CookieProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CookiefromString(String header)booleansupports(Class<?> type)Ascertain if the Provider supports a particular type.StringtoString(Cookie cookie)
-
-
-
Method Detail
-
supports
public boolean supports(Class<?> type)
Description copied from interface:HeaderDelegateProviderAscertain if the Provider supports a particular type.- Specified by:
supportsin interfaceHeaderDelegateProvider<Cookie>- Parameters:
type- the type that is to be supported.- Returns:
- true if the type is supported, otherwise false.
-
toString
public String toString(Cookie cookie)
- Specified by:
toStringin interfaceRuntimeDelegate.HeaderDelegate<Cookie>
-
fromString
public Cookie fromString(String header)
- Specified by:
fromStringin interfaceRuntimeDelegate.HeaderDelegate<Cookie>
-
-