Class CreateCondition
- java.lang.Object
-
- com.cdancy.bitbucket.rest.options.CreateCondition
-
public abstract class CreateCondition extends Object
-
-
Constructor Summary
Constructors Constructor Description CreateCondition()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static CreateConditioncreate(Condition condition)static CreateConditioncreate(Long id, Matcher sourceMatcher, Matcher targetMatcher, List<User> reviewers, Long requiredApprovals)abstract Longid()abstract LongrequiredApprovals()abstract List<User>reviewers()abstract MatchersourceMatcher()abstract MatchertargetMatcher()
-
-
-
Method Detail
-
id
@Nullable public abstract Long id()
-
sourceMatcher
public abstract Matcher sourceMatcher()
-
targetMatcher
public abstract Matcher targetMatcher()
-
requiredApprovals
public abstract Long requiredApprovals()
-
create
public static CreateCondition create(Long id, Matcher sourceMatcher, Matcher targetMatcher, List<User> reviewers, Long requiredApprovals)
-
create
public static CreateCondition create(Condition condition)
-
-