net.sixpointsix.carpo.casedata.model.CarpoCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carpo-case-data Show documentation
Show all versions of carpo-case-data Show documentation
Case data library for carpo core
package net.sixpointsix.carpo.casedata.model;
import net.sixpointsix.carpo.casedata.model.builder.CarpoCaseBuilder;
import net.sixpointsix.carpo.common.model.CarpoPropertyEntity;
/**
* Carpo case is at the heart of the case management system will be used by most other modules
*
* @author Andrew Tarry
* @since 0.0.1
*/
public interface CarpoCase extends CarpoPropertyEntity {
/**
* Create a new case builder
*
* @return case builder
*/
static CarpoCaseBuilder builder() {
return new CarpoCaseBuilder();
}
}