Class Participants
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.participants.Participants
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class Participants extends Object implements ErrorsHolder
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classParticipants.Rolestatic classParticipants.Status
-
Constructor Summary
Constructors Constructor Description Participants()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract booleanapproved()static Participantscreate(User user, String lastReviewedCommit, Participants.Role role, boolean approved, Participants.Status status, List<Error> errors)abstract StringlastReviewedCommit()abstract Participants.Rolerole()abstract Participants.Statusstatus()abstract Useruser()-
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
-
user
@Nullable public abstract User user()
-
lastReviewedCommit
@Nullable public abstract String lastReviewedCommit()
-
role
@Nullable public abstract Participants.Role role()
-
approved
public abstract boolean approved()
-
status
@Nullable public abstract Participants.Status status()
-
create
public static Participants create(User user, String lastReviewedCommit, Participants.Role role, boolean approved, Participants.Status status, List<Error> errors)
-
-