Package com.atlassian.confluence.core
Class VersionHistorySummaryCollaborator
- java.lang.Object
-
- com.atlassian.confluence.core.VersionHistorySummaryCollaborator
-
public class VersionHistorySummaryCollaborator extends Object
Represents a collaborator and the version history of a piece of content they have worked on. Note that this is an interim object used to store a single result from the set returned by the query: confluence.content_findVersionHistory There may be other collaborators on the content which are not represented in a single VersionHistorySummaryCollaborator object.- Since:
- 5.11
-
-
Constructor Summary
Constructors Constructor Description VersionHistorySummaryCollaborator(long id, int version, Date lastModificationDate, String versionComment, ConfluenceUser lastModifier, ConfluenceUser collaborator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfluenceUser
getCollaborator()
long
getId()
Date
getLastModificationDate()
ConfluenceUser
getLastModifier()
int
getVersion()
String
getVersionComment()
-
-
-
Constructor Detail
-
VersionHistorySummaryCollaborator
public VersionHistorySummaryCollaborator(long id, int version, Date lastModificationDate, String versionComment, ConfluenceUser lastModifier, ConfluenceUser collaborator)
-
-
Method Detail
-
getId
public long getId()
-
getVersion
public int getVersion()
-
getLastModificationDate
public Date getLastModificationDate()
-
getVersionComment
public String getVersionComment()
-
getLastModifier
public ConfluenceUser getLastModifier()
-
getCollaborator
public ConfluenceUser getCollaborator()
-
-