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.Boolean
getAllowAddReviewersAndApprovers()
java.lang.Boolean
getAllowDelegateApproval()
java.lang.Boolean
getApproved()
java.util.List<User>
getAuthors()
java.lang.Boolean
getIsPublic()
java.lang.String
getName()
Project
getProject()
java.lang.Integer
getReviewCommentCount()
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.Integer
getSequence()
java.lang.Boolean
getTimeTrackingEnabled()
java.lang.Integer
getUnresolvedReviewCommentCount()
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:
-
-