Package jakarta.ws.rs.core
Class Link.JaxbLink
- java.lang.Object
-
- jakarta.ws.rs.core.Link.JaxbLink
-
- Enclosing class:
- Link
@Deprecated public static class Link.JaxbLink extends Object
Deprecated.Value type forLink
that can be marshalled and unmarshalled by JAXB. Note that usage of this class requires the Jakarta XML Binding API and an implementation. The Jakarta RESTful Web Services implementation is not required to provide these dependencies.- Since:
- 2.0
- See Also:
Link.JaxbAdapter
-
-
Constructor Summary
Constructors Constructor Description JaxbLink()
Deprecated.Default constructor needed during unmarshalling.JaxbLink(URI uri)
Deprecated.Construct an instance from a URI and no parameters.JaxbLink(URI uri, Map<QName,Object> params)
Deprecated.Construct an instance from a URI and some parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object o)
Deprecated.Map<QName,Object>
getParams()
Deprecated.Get the parameter map for this link.URI
getUri()
Deprecated.Get the underlying URI for this link.int
hashCode()
Deprecated.
-
-
-
Constructor Detail
-
JaxbLink
public JaxbLink()
Deprecated.Default constructor needed during unmarshalling.
-
JaxbLink
public JaxbLink(URI uri)
Deprecated.Construct an instance from a URI and no parameters.- Parameters:
uri
- underlying URI.
-
-