API - Resource
The Resource abstract class represents a resource (e.g., person, department, equipment).
Fields
| Field | Type | Description |
|---|---|---|
id | String | Unique identifier |
locationName | String | Resource location |
typeName | String | Resource type name |
roleName | String | Assigned role name |
attributes | List<Attribute> | Associated attributes |
attributeGroups | List<AttributeGroup> | Attribute groups |
Getters
String getId();
String getLocationName();
String getTypeName();
String getRoleName();
List<Attribute> getAttributes();
List<AttributeGroup> getAttributeGroups();
Setters
void setLocation(String locationName) throws DataAccessException;