Interface Edge
-
- All Known Implementing Classes:
DefaultEdge
public interface Edge
If pages and blog posts are targets, then user actions on them are edges.A page with 10 comments and 2 likes, has a total of 12 edges emanating from it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Date
getDate()
The date the edge was created.@Nullable 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.
-
-
-
Method Detail
-
getUser
ConfluenceUser getUser()
The user who created the edge.
-
getTarget
Object getTarget()
The object that the edge / action is targeted at.
-
getDate
Date getDate()
The date the edge was created.
-
getEdgeId
@Nullable Object getEdgeId()
- Returns:
- an id to uniquely identifier the edge
-
-