Interface Project
-
- All Superinterfaces:
Entity,Identifiable
- All Known Implementing Classes:
ProjectImpl
public interface Project extends Entity
Project is used to describe a project (like a digitization project or an electronic publishing project). See also https://schema.org/Project (Thing - Organization - Project)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocalDategetEndDate()LocalDategetStartDate()LocalizedStructuredContentgetText()voidsetEndDate(LocalDate endDate)voidsetStartDate(LocalDate startDate)voidsetText(LocalizedStructuredContent text)-
Methods inherited from interface de.digitalcollections.model.api.identifiable.entity.Entity
getEntityType, setEntityType
-
Methods inherited from interface de.digitalcollections.model.api.identifiable.Identifiable
addIdentifier, getCreated, getDescription, getIdentifierByNamespace, getIdentifiers, getLabel, getLastModified, getPreviewImage, getType, getUuid, setCreated, setDescription, setIdentifiers, setLabel, setLastModified, setPreviewImage, setType, setUuid
-
-
-
-
Method Detail
-
getText
LocalizedStructuredContent getText()
- Returns:
- localized formatted text describing project
-
setText
void setText(LocalizedStructuredContent text)
- Parameters:
text- set localized formatted text describing project
-
getStartDate
LocalDate getStartDate()
- Returns:
- date when project was started
-
setStartDate
void setStartDate(LocalDate startDate)
- Parameters:
startDate- set date when project starts/started (may be in the future)
-
getEndDate
LocalDate getEndDate()
- Returns:
- date when project ended (null if still running)
-
setEndDate
void setEndDate(LocalDate endDate)
- Parameters:
endDate- set date when project ended
-
-