API - Project
The Project abstract class represents a project in the TMS system.
Fields
| Field | Type | Description |
|---|---|---|
id | String | Unique identifier |
typeName | String | Project type name |
name | String | Project name |
begin | ZonedDateTime | Project start date |
end | ZonedDateTime | Project end date |
active | Boolean | Whether project is active |
attributes | List<Attribute> | Associated attributes |
attributeGroups | List<AttributeGroup> | Attribute groups |
Getters
String getId();
String getTypeName();
String getName();
ZonedDateTime getBegin();
ZonedDateTime getEnd();
Boolean isActive();
List<Attribute> getAttributes();
Setters
void setBegin(ZonedDateTime begin);
void setEnd(ZonedDateTime end);
void setName(String name) throws DataAccessException;