Class DefaultEdge
- java.lang.Object
-
- com.atlassian.confluence.plugins.edgeindex.model.DefaultEdge
-
-
Constructor Summary
Constructors Constructor Description DefaultEdge(ConfluenceUser user, EdgeType edgeType, Object target, Date date, @NonNull Object edgeId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getDate()
The date the edge was created.@NonNull Object
getEdgeId()
EdgeType
getEdgeType()
The type of the edge.Object
getTarget()
The object that the edge / action is targeted at.ConfluenceUser
getUser()
The user who created the edge.
-
-
-
Constructor Detail
-
DefaultEdge
public DefaultEdge(ConfluenceUser user, EdgeType edgeType, Object target, Date date, @NonNull Object edgeId)
-
-
Method Detail
-
getUser
public ConfluenceUser getUser()
Description copied from interface:Edge
The user who created the edge.
-
getEdgeType
public EdgeType getEdgeType()
Description copied from interface:Edge
The type of the edge.- Specified by:
getEdgeType
in interfaceEdge
- See Also:
EdgeType
-
getEdgeId
public @NonNull Object getEdgeId()
-
getTarget
public Object getTarget()
Description copied from interface:Edge
The object that the edge / action is targeted at.
-
-