Class SecurityScope
- java.lang.Object
-
- com.broadleafcommerce.auth.security.domain.SecurityScope
-
- All Implemented Interfaces:
Serializable
@Entity(name="BroadleafSecurityScope") public class SecurityScope extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SecurityScope()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getId()
String
getName()
int
hashCode()
boolean
isOpen()
Whether all users should have this scope assigned to them, regardless of what their underlying permissions are.void
setId(String id)
void
setName(String name)
void
setOpen(boolean open)
Whether all users should have this scope assigned to them, regardless of what their underlying permissions are.String
toString()
-
-
-
Method Detail
-
getId
public String getId()
-
getName
public String getName()
-
isOpen
public boolean isOpen()
Whether all users should have this scope assigned to them, regardless of what their underlying permissions are.
-
setId
public void setId(String id)
-
setName
public void setName(String name)
-
setOpen
public void setOpen(boolean open)
Whether all users should have this scope assigned to them, regardless of what their underlying permissions are.
-
canEqual
protected boolean canEqual(Object other)
-
-