API - ActivitySeries
The ActivitySeries abstract class represents a series of related activities.
Fields
| Field | Type | Description |
|---|---|---|
id | String | Unique identifier |
typeName | String | Series type name |
name | String | Series name |
begin | ZonedDateTime | Series start date |
end | ZonedDateTime | Series end date |
locationName | String | Series location |
projectName | String | Associated project |
requestorName | String | Requestor name |
attributes | List<Attribute> | Associated attributes |
attributeGroups | List<AttributeGroup> | Attribute groups |
activities | List<Activity> | Member activities |
Getters
String getId();
String getTypeName();
String getName();
ZonedDateTime getBegin();
ZonedDateTime getEnd();
String getLocationName();
String getProjectName();
String getRequestorName();
List<Attribute> getAttributes();
List<AttributeGroup> getAttributeGroups();
List<Resource> getResourceAssignments();
List<Activity> getActivities();
Setters
void setBegin(ZonedDateTime begin);
void setEnd(ZonedDateTime end);
void setLocation(String locationName) throws DataAccessException;
void setRequestor(String loginName) throws DataAccessException;
void setName(String name) throws DataAccessException;