public class PermissionSetRole extends GenericParcelable implements Validator, JSONifiable
Modifier and Type | Class and Description |
---|---|
static interface |
PermissionSetRole.Constraints |
JSONifiable.Creator<T>
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static String |
AUTHORITY |
static Parcelable.Creator<PermissionSetRole> |
CREATOR |
static JSONifiable.Creator<PermissionSetRole> |
JSON_CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier | Constructor and Description |
---|---|
|
PermissionSetRole()
Constructs a new empty instance.
|
protected |
PermissionSetRole(boolean noInit)
Constructs a new empty instance.
|
|
PermissionSetRole(JSONObject jsonObject)
Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be
reflected in this instance and vice-versa.
|
|
PermissionSetRole(PermissionSetRole src)
Constructs a new instance that is a deep copy of the source instance.
|
|
PermissionSetRole(String json)
Constructs a new instance from the given JSON String.
|
Modifier and Type | Method and Description |
---|---|
void |
clearId()
Clears the 'id' field, the 'has' method for this field will now return false
|
void |
clearPermissionSet()
Clears the 'permissionSet' field, the 'has' method for this field will now return false
|
void |
clearRole()
Clears the 'role' field, the 'has' method for this field will now return false
|
boolean |
containsChanges()
Returns true if this instance has any changes.
|
PermissionSetRole |
copyChanges()
Create a copy of this instance that contains only fields that were set after the constructor was called.
|
protected GenericClient |
getGenericClient() |
String |
getId()
Not a normal Clover ID
|
JSONObject |
getJSONObject()
Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be
reflected in this instance and vice-versa.
|
Reference |
getPermissionSet()
The role
|
Reference |
getRole()
The role
|
boolean |
hasId()
Checks whether the 'id' field has been set, however the value could be null
|
boolean |
hasPermissionSet()
Checks whether the 'permissionSet' field has been set, however the value could be null
|
boolean |
hasRole()
Checks whether the 'role' field has been set, however the value could be null
|
boolean |
isNotNullId()
Checks whether the 'id' field is set and is not null
|
boolean |
isNotNullPermissionSet()
Checks whether the 'permissionSet' field is set and is not null
|
boolean |
isNotNullRole()
Checks whether the 'role' field is set and is not null
|
void |
mergeChanges(PermissionSetRole src)
Copy all the changed fields from the given source to this instance.
|
void |
resetChangeLog()
Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
|
PermissionSetRole |
setId(String id)
Sets the field 'id'.
|
PermissionSetRole |
setPermissionSet(Reference permissionSet)
Sets the field 'permissionSet'.
|
PermissionSetRole |
setRole(Reference role)
Sets the field 'role'.
|
void |
validate() |
describeContents, getBundle, toString, writeToParcel
public static final String AUTHORITY
public static final Parcelable.Creator<PermissionSetRole> CREATOR
public static final JSONifiable.Creator<PermissionSetRole> JSON_CREATOR
public PermissionSetRole()
protected PermissionSetRole(boolean noInit)
public PermissionSetRole(String json) throws IllegalArgumentException
IllegalArgumentException
public PermissionSetRole(JSONObject jsonObject)
public PermissionSetRole(PermissionSetRole src)
public String getId()
public Reference getRole()
public Reference getPermissionSet()
protected GenericClient getGenericClient()
getGenericClient
in class GenericParcelable
public JSONObject getJSONObject()
getJSONObject
in interface JSONifiable
public boolean isNotNullId()
public boolean isNotNullRole()
public boolean isNotNullPermissionSet()
public boolean hasId()
public boolean hasRole()
public boolean hasPermissionSet()
public PermissionSetRole setId(String id)
public PermissionSetRole setRole(Reference role)
public PermissionSetRole setPermissionSet(Reference permissionSet)
public void clearId()
public void clearRole()
public void clearPermissionSet()
public boolean containsChanges()
public void resetChangeLog()
public PermissionSetRole copyChanges()
public void mergeChanges(PermissionSetRole src)