Class LinksetNode
- java.lang.Object
-
- org.dspace.app.rest.signposting.model.LinksetNode
-
public class LinksetNode extends Object
DTO object represents a node of a link set.
-
-
Constructor Summary
Constructors Constructor Description LinksetNode(String link, LinksetRelationType relation, String anchor)LinksetNode(String link, LinksetRelationType relation, String type, String anchor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAnchor()StringgetLink()LinksetRelationTypegetRelation()StringgetType()voidsetAnchor(String anchor)voidsetLink(String link)voidsetRelation(LinksetRelationType relation)voidsetType(String type)
-
-
-
Constructor Detail
-
LinksetNode
public LinksetNode(String link, LinksetRelationType relation, String type, String anchor)
-
LinksetNode
public LinksetNode(String link, LinksetRelationType relation, String anchor)
-
-
Method Detail
-
getLink
public String getLink()
-
setLink
public void setLink(String link)
-
getRelation
public LinksetRelationType getRelation()
-
setRelation
public void setRelation(LinksetRelationType relation)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getAnchor
public String getAnchor()
-
setAnchor
public void setAnchor(String anchor)
-
-