com.atlassian.confluence.links
Class OutgoingLink
java.lang.Object
com.atlassian.core.bean.EntityObject
com.atlassian.confluence.core.ConfluenceEntityObject
com.atlassian.confluence.links.AbstractLink
com.atlassian.confluence.links.OutgoingLink
- All Implemented Interfaces:
- Cloneable, Comparable, Serializable
- public class OutgoingLink
- extends AbstractLink
- implements Comparable
Represents a link from a source page to a destination.
The destination can currently be:
- Another page in the same space
- A page in another space
- An external URL
- See Also:
- Serialized Form
OutgoingLink
public OutgoingLink()
- Default constructor
OutgoingLink
public OutgoingLink(ContentEntityObject sourceContent,
String destinationSpaceKey,
String destinationPageTitle)
- Convenience constructor
- Parameters:
sourceContent
- content object that the link comes fromdestinationSpaceKey
- space the link points todestinationPageTitle
- page the link points to
getDestinationPageTitle
public String getDestinationPageTitle()
setDestinationPageTitle
public void setDestinationPageTitle(String destinationPageTitle)
getDestinationSpaceKey
public String getDestinationSpaceKey()
setDestinationSpaceKey
public void setDestinationSpaceKey(String destinationSpaceKey)
isUrlLink
public boolean isUrlLink()
getUrlLink
public String getUrlLink()
equals
public boolean equals(Object o)
- Overrides:
equals
in class AbstractLink
hashCode
public int hashCode()
- Overrides:
hashCode
in class AbstractLink
compareTo
public int compareTo(Object o)
- Specified by:
compareTo
in interface Comparable
toString
public String toString()
isFrom
public boolean isFrom(AbstractPage page)
- Is the link directed from a page, or from some of its contents (i.e. comments)?
Used to filter out internal links from a page's links list.