Class User
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.pullrequest.User
-
- All Implemented Interfaces:
ErrorsHolder
public abstract class User extends Object implements ErrorsHolder
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Booleanactive()static Usercreate(String name, String emailAddress, int id, String displayName, boolean active, String slug, String type)static Usercreate(List<Error> errors, String name, String emailAddress, int id, String displayName, boolean active, String slug, String type, String directoryName, boolean deletable, long lastAuthenticationTimestamp, boolean mutableDetails, boolean mutableGroups)abstract Booleandeletable()abstract StringdirectoryName()abstract StringdisplayName()abstract StringemailAddress()abstract Integerid()abstract LonglastAuthenticationTimestamp()abstract BooleanmutableDetails()abstract BooleanmutableGroups()abstract Stringname()abstract Stringslug()abstract Stringtype()-
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
-
name
@Nullable public abstract String name()
-
emailAddress
@Nullable public abstract String emailAddress()
-
id
@Nullable public abstract Integer id()
-
displayName
@Nullable public abstract String displayName()
-
active
@Nullable public abstract Boolean active()
-
slug
@Nullable public abstract String slug()
-
type
@Nullable public abstract String type()
-
directoryName
@Nullable public abstract String directoryName()
-
deletable
@Nullable public abstract Boolean deletable()
-
lastAuthenticationTimestamp
@Nullable public abstract Long lastAuthenticationTimestamp()
-
mutableDetails
@Nullable public abstract Boolean mutableDetails()
-
mutableGroups
@Nullable public abstract Boolean mutableGroups()
-
create
public static User create(String name, String emailAddress, int id, String displayName, boolean active, String slug, String type)
-
-