Class LinkDescription
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.LinkDescription
-
- All Implemented Interfaces:
Serializable
public class LinkDescription extends Object implements Serializable
The request-related HATEOAS link.- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LinkDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetHref()The complete target URL.StringgetMethod()The HTTP method required to make the related call.StringgetRel()The link relation type, which serves as an ID for a link that unambiguously describes the semantics of the link.voidsetHref(String href)The complete target URL.voidsetMethod(String method)The HTTP method required to make the related call.voidsetRel(String rel)The link relation type, which serves as an ID for a link that unambiguously describes the semantics of the link.
-
-
-
Method Detail
-
setHref
public void setHref(String href)
The complete target URL.
-
setRel
public void setRel(String rel)
The link relation type, which serves as an ID for a link that unambiguously describes the semantics of the link.
-
setMethod
public void setMethod(String method)
The HTTP method required to make the related call.
-
getHref
public String getHref()
The complete target URL.
-
getRel
public String getRel()
The link relation type, which serves as an ID for a link that unambiguously describes the semantics of the link.
-
getMethod
public String getMethod()
The HTTP method required to make the related call.
-
-