Class BranchRestriction
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.branch.BranchRestriction
-
public abstract class BranchRestriction extends Object
-
-
Constructor Summary
Constructors Constructor Description BranchRestriction()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract List<Long>accessKeys()static BranchRestrictioncreate(Long id, BranchRestrictionEnumType type, Matcher matcher, List<User> users, List<String> groups, List<AccessKey> accessKeys)static BranchRestrictioncreateWithId(Long id, BranchRestrictionEnumType type, Matcher matcher, List<User> users, List<String> groups, List<Long> accessKeysId)abstract List<String>groups()abstract Longid()abstract Matchermatcher()abstract BranchRestrictionEnumTypetype()abstract List<User>users()
-
-
-
Method Detail
-
id
@Nullable public abstract Long id()
-
type
public abstract BranchRestrictionEnumType type()
-
matcher
public abstract Matcher matcher()
-
createWithId
public static BranchRestriction createWithId(Long id, BranchRestrictionEnumType type, Matcher matcher, List<User> users, List<String> groups, List<Long> accessKeysId)
-
create
public static BranchRestriction create(Long id, BranchRestrictionEnumType type, Matcher matcher, List<User> users, List<String> groups, @Nullable List<AccessKey> accessKeys)
-
-