Package com.jamasoftware.velocity.api
Interface RevisionItem
-
- All Superinterfaces:
DomainObject
public interface RevisionItem extends DomainObject
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RevisiongetRevision()java.lang.IntegergetRevisionItemCommentCount()Returns a count of all comments on this revision item, including resolved comments.java.util.List<RevisionItemComment>getRevisionItemComments()Returns a flattened list of all comments, both unresolved and resolved, on this revision item.java.util.List<RevisionUserItem>getRevisionUserItems()java.lang.StringgetSequence()java.lang.IntegergetUnresolvedRevisionItemCommentCount()Returns a count of all comments on this revision item, just the unresolved comments.java.lang.IntegergetUpstreamRelationshipCount()VersiongetVersion()-
Methods inherited from interface com.jamasoftware.velocity.api.DomainObject
getCreatedBy, getCreatedDate, getId, getModifiedBy, getModifiedDate, getXmlToString, isNewObject, obtainAclObjectIdentity
-
-
-
-
Method Detail
-
getUpstreamRelationshipCount
java.lang.Integer getUpstreamRelationshipCount()
-
getRevisionUserItems
java.util.List<RevisionUserItem> getRevisionUserItems()
-
getRevision
Revision getRevision()
-
getSequence
java.lang.String getSequence()
-
getVersion
Version getVersion()
-
getRevisionItemCommentCount
java.lang.Integer getRevisionItemCommentCount()
Returns a count of all comments on this revision item, including resolved comments. The count includes deleted comments. The count does not include review comments. The count does not include an earlier revision's comments.- Returns:
-
getUnresolvedRevisionItemCommentCount
java.lang.Integer getUnresolvedRevisionItemCommentCount()
Returns a count of all comments on this revision item, just the unresolved comments. The count includes deleted comments. The count does not include review comments. The count does not include an earlier revision's comments.- Returns:
-
getRevisionItemComments
java.util.List<RevisionItemComment> getRevisionItemComments()
Returns a flattened list of all comments, both unresolved and resolved, on this revision item. It does return deleted comments. It does not return review comments. It does not include an earlier revision's comments.- Returns:
-
-