Class LinkProvider
- java.lang.Object
-
- org.glassfish.jersey.message.internal.LinkProvider
-
- All Implemented Interfaces:
RuntimeDelegate.HeaderDelegate<Link>,HeaderDelegateProvider<Link>
@Singleton public class LinkProvider extends Object implements HeaderDelegateProvider<Link>
Provider for Link Headers.- Author:
- Santiago Pericas-Geertsen, Marek Potociar
-
-
Constructor Summary
Constructors Constructor Description LinkProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LinkfromString(String value)booleansupports(Class<?> type)Ascertain if the Provider supports a particular type.StringtoString(Link value)
-
-
-
Method Detail
-
supports
public boolean supports(Class<?> type)
Description copied from interface:HeaderDelegateProviderAscertain if the Provider supports a particular type.- Specified by:
supportsin interfaceHeaderDelegateProvider<Link>- Parameters:
type- the type that is to be supported.- Returns:
- true if the type is supported, otherwise false.
-
fromString
public Link fromString(String value) throws IllegalArgumentException
- Specified by:
fromStringin interfaceRuntimeDelegate.HeaderDelegate<Link>- Throws:
IllegalArgumentException
-
toString
public String toString(Link value)
- Specified by:
toStringin interfaceRuntimeDelegate.HeaderDelegate<Link>
-
-