Class Condition
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.defaultreviewers.Condition
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class Condition extends java.lang.Object implements ErrorsHolder
-
-
Constructor Summary
Constructors Constructor Description Condition()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Conditioncreate(java.lang.Long id, Scope scope, Matcher sourceRefMatcher, Matcher targetRefMatcher, java.util.List<User> reviewers, java.lang.Long requiredApprovals, java.util.List<Error> errors)abstract java.lang.Longid()abstract java.lang.LongrequiredApprovals()abstract java.util.List<User>reviewers()abstract Scopescope()abstract MatchersourceRefMatcher()abstract MatchertargetRefMatcher()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.cdancy.bitbucket.rest.domain.common.ErrorsHolder
errors
-
-
-
-
Method Detail
-
id
@Nullable public abstract java.lang.Long id()
-
scope
@Nullable public abstract Scope scope()
-
sourceRefMatcher
@Nullable public abstract Matcher sourceRefMatcher()
-
targetRefMatcher
@Nullable public abstract Matcher targetRefMatcher()
-
reviewers
@Nullable public abstract java.util.List<User> reviewers()
-
requiredApprovals
@Nullable public abstract java.lang.Long requiredApprovals()
-
-