Skip to main content

API - Project

The Project abstract class represents a project in the TMS system.

Fields

FieldTypeDescription
idStringUnique identifier
typeNameStringProject type name
nameStringProject name
beginZonedDateTimeProject start date
endZonedDateTimeProject end date
activeBooleanWhether project is active
attributesList<Attribute>Associated attributes
attributeGroupsList<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;