Package com.jamasoftware.velocity.api
Interface Review
-
- All Superinterfaces:
DomainObject
public interface Review extends DomainObject
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.BooleangetAllowAddReviewersAndApprovers()java.lang.BooleangetAllowDelegateApproval()java.lang.BooleangetApproved()java.util.List<User>getAuthors()java.lang.BooleangetIsPublic()java.lang.StringgetName()ProjectgetProject()java.lang.IntegergetReviewCommentCount()Returns a count of all comments on the review and its revisions, including resolved comments.java.util.List<RevisionItemComment>getReviewComments()Returns a flattened list of all comments, both unresolved and resolved, on the review and all of its revisions.java.util.List<Revision>getRevisions()java.lang.IntegergetSequence()java.lang.BooleangetTimeTrackingEnabled()java.lang.IntegergetUnresolvedReviewCommentCount()Returns a count of all comments on the review and its revisions, just the unresolved comments.-
Methods inherited from interface com.jamasoftware.velocity.api.DomainObject
getCreatedBy, getCreatedDate, getId, getModifiedBy, getModifiedDate, getXmlToString, isNewObject, obtainAclObjectIdentity
-
-
-
-
Method Detail
-
getAllowAddReviewersAndApprovers
java.lang.Boolean getAllowAddReviewersAndApprovers()
-
getAllowDelegateApproval
java.lang.Boolean getAllowDelegateApproval()
-
getApproved
java.lang.Boolean getApproved()
-
getIsPublic
java.lang.Boolean getIsPublic()
-
getTimeTrackingEnabled
java.lang.Boolean getTimeTrackingEnabled()
-
getSequence
java.lang.Integer getSequence()
-
getRevisions
java.util.List<Revision> getRevisions()
-
getAuthors
java.util.List<User> getAuthors()
-
getProject
Project getProject()
-
getName
java.lang.String getName()
-
getReviewCommentCount
java.lang.Integer getReviewCommentCount()
Returns a count of all comments on the review and its revisions, including resolved comments. The count includes deleted comments. The count does not include revision item comments.- Returns:
-
getUnresolvedReviewCommentCount
java.lang.Integer getUnresolvedReviewCommentCount()
Returns a count of all comments on the review and its revisions, just the unresolved comments. The count includes deleted comments. The count does not include revision item comments.- Returns:
-
getReviewComments
java.util.List<RevisionItemComment> getReviewComments()
Returns a flattened list of all comments, both unresolved and resolved, on the review and all of its revisions. It does return deleted comments. It does not return revision item comments.- Returns:
-
-