Class DenormalisedSid
- java.lang.Object
-
- com.atlassian.confluence.security.denormalisedpermissions.impl.user.domain.DenormalisedSid
-
- All Implemented Interfaces:
NotExportable
,Serializable
public class DenormalisedSid extends Object implements Serializable, NotExportable
Entity for storing sids (security id) which could be either user or group or anonymous or authenticated user All tables with denormalised data refers to sids instead of real users groups etc- Since:
- 7.10.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
TABLE_NAME
-
Constructor Summary
Constructors Constructor Description DenormalisedSid()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getId()
String
getName()
DenormalisedSidType
getType()
void
setId(Long id)
void
setName(String name)
void
setType(DenormalisedSidType type)
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public DenormalisedSidType getType()
-
setType
public void setType(DenormalisedSidType type)
-
-