Skip to main content

API - ActivitySeries

The ActivitySeries abstract class represents a series of related activities.

Fields

FieldTypeDescription
idStringUnique identifier
typeNameStringSeries type name
nameStringSeries name
beginZonedDateTimeSeries start date
endZonedDateTimeSeries end date
locationNameStringSeries location
projectNameStringAssociated project
requestorNameStringRequestor name
attributesList<Attribute>Associated attributes
attributeGroupsList<AttributeGroup>Attribute groups
activitiesList<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;