Class RemoveScopeRequest
- Object
-
- RemoveScopeRequest
-
- All Implemented Interfaces:
Serializable
public class RemoveScopeRequest extends Object implements Serializable
The properties of the scope to be removed.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RemoveScopeRequest.Builder
-
Constructor Summary
Constructors Constructor Description RemoveScopeRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RemoveScopeRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getScopeId()
The ID of the scope to be removed.int
hashCode()
boolean
isDeleteAssignments()
Indicates any assignments linked to the given scope should also be deleted.void
setDeleteAssignments(boolean deleteAssignments)
Indicates any assignments linked to the given scope should also be deleted.void
setScopeId(@NotNull UUID scopeId)
The ID of the scope to be removed.String
toString()
-
-
-
Method Detail
-
builder
public static RemoveScopeRequest.Builder builder()
-
getScopeId
@NotNull public @NotNull UUID getScopeId()
The ID of the scope to be removed. Silently ignored if the ID is provided as path parameter of the request.
-
isDeleteAssignments
public boolean isDeleteAssignments()
Indicates any assignments linked to the given scope should also be deleted.
-
setScopeId
public void setScopeId(@NotNull @NotNull UUID scopeId)
The ID of the scope to be removed. Silently ignored if the ID is provided as path parameter of the request.
-
setDeleteAssignments
public void setDeleteAssignments(boolean deleteAssignments)
Indicates any assignments linked to the given scope should also be deleted.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-