Package com.jamasoftware.velocity.api
Interface Revision
-
- All Superinterfaces:
DomainObject
public interface Revision extends DomainObject
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Boolean
getAllowVoting()
Baseline
getBaseline()
java.lang.String
getEmailSubject()
java.util.Date
getEndDate()
java.util.Date
getEndDateAsServerDate()
java.lang.Boolean
getNotifyAuthorOnComplete()
java.lang.Integer
getNumVotesPerUser()
java.lang.String
getOverview()
java.lang.Boolean
getRequireSignature()
Review
getReview()
java.lang.Integer
getRevisionCommentCount()
Returns a count of all comments on this revision, including resolved comments.java.util.List<RevisionItemComment>
getRevisionComments()
Returns a flattened list of all comments, both unresolved and resolved, on this revision.java.util.List<RevisionItem>
getRevisionItems()
java.util.List<RevisionPropertyEntry>
getRevisionPropertyEntries()
java.util.List<RevisionTestSet>
getRevisionTestSets()
java.util.List<RevisionUser>
getRevisionUsers()
java.lang.Integer
getSequenceNumber()
java.util.Date
getStartDate()
RevisionStatus
getStatus()
java.lang.Integer
getUnresolvedRevisionCommentCount()
Returns a count of all comments on this revision, just the unresolved comments.java.lang.String
getVotingText()
-
Methods inherited from interface com.jamasoftware.velocity.api.DomainObject
getCreatedBy, getCreatedDate, getId, getModifiedBy, getModifiedDate, getXmlToString, isNewObject, obtainAclObjectIdentity
-
-
-
-
Method Detail
-
getRevisionTestSets
java.util.List<RevisionTestSet> getRevisionTestSets()
-
getBaseline
Baseline getBaseline()
-
getAllowVoting
java.lang.Boolean getAllowVoting()
-
getNotifyAuthorOnComplete
java.lang.Boolean getNotifyAuthorOnComplete()
-
getRequireSignature
java.lang.Boolean getRequireSignature()
-
getEndDateAsServerDate
java.util.Date getEndDateAsServerDate()
-
getStartDate
java.util.Date getStartDate()
-
getEndDate
java.util.Date getEndDate()
-
getNumVotesPerUser
java.lang.Integer getNumVotesPerUser()
-
getSequenceNumber
java.lang.Integer getSequenceNumber()
-
getRevisionPropertyEntries
java.util.List<RevisionPropertyEntry> getRevisionPropertyEntries()
-
getRevisionItems
java.util.List<RevisionItem> getRevisionItems()
-
getRevisionUsers
java.util.List<RevisionUser> getRevisionUsers()
-
getReview
Review getReview()
-
getStatus
RevisionStatus getStatus()
-
getEmailSubject
java.lang.String getEmailSubject()
-
getOverview
java.lang.String getOverview()
-
getVotingText
java.lang.String getVotingText()
-
getRevisionCommentCount
java.lang.Integer getRevisionCommentCount()
Returns a count of all comments on this revision, including resolved comments. The count includes deleted comments. The count does not include revision item comments. The count does not include an earlier revision's comments.- Returns:
-
getUnresolvedRevisionCommentCount
java.lang.Integer getUnresolvedRevisionCommentCount()
Returns a count of all comments on this revision, just the unresolved comments. The count includes deleted comments. The count does not include revision item comments. The count does not include an earlier revision's comments.- Returns:
-
getRevisionComments
java.util.List<RevisionItemComment> getRevisionComments()
Returns a flattened list of all comments, both unresolved and resolved, on this revision. It does return deleted comments. It does not return revision item comments. It does not include an earlier revision's comments.- Returns:
-
-