Interface I_TemplateStoreAccess
-
- All Superinterfaces:
I_SimpleCRUD
- All Known Implementing Classes:
TemplateStoreAccess
public interface I_TemplateStoreAccess extends I_SimpleCRUD
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static intadminDeleteAllTemplates(I_DomainAccess domainAccess)static StringadminUpdateTemplate(I_DomainAccess domainAccess, org.openehr.schemas.v1.OPERATIONALTEMPLATE template)static booleandeleteTemplate(I_DomainAccess domainAccess, String templateId)static List<TemplateMetaData>fetchAll(I_DomainAccess domainAccess)static Set<String>fetchAllTemplateIds(I_DomainAccess domainAccess)static I_TemplateStoreAccessgetInstance(I_DomainAccess access, org.openehr.schemas.v1.OPERATIONALTEMPLATE operationaltemplate)org.openehr.schemas.v1.OPERATIONALTEMPLATEgetTemplate()static I_TemplateStoreAccessretrieveInstanceByTemplateId(I_DomainAccess domainAccess, String templateId)voidsetTemplate(org.openehr.schemas.v1.OPERATIONALTEMPLATE template)
-
-
-
Method Detail
-
getTemplate
org.openehr.schemas.v1.OPERATIONALTEMPLATE getTemplate()
-
setTemplate
void setTemplate(org.openehr.schemas.v1.OPERATIONALTEMPLATE template)
-
getInstance
static I_TemplateStoreAccess getInstance(I_DomainAccess access, org.openehr.schemas.v1.OPERATIONALTEMPLATE operationaltemplate)
-
retrieveInstanceByTemplateId
static I_TemplateStoreAccess retrieveInstanceByTemplateId(I_DomainAccess domainAccess, String templateId)
-
fetchAll
static List<TemplateMetaData> fetchAll(I_DomainAccess domainAccess)
-
fetchAllTemplateIds
static Set<String> fetchAllTemplateIds(I_DomainAccess domainAccess)
-
adminUpdateTemplate
static String adminUpdateTemplate(I_DomainAccess domainAccess, org.openehr.schemas.v1.OPERATIONALTEMPLATE template)
-
deleteTemplate
static boolean deleteTemplate(I_DomainAccess domainAccess, String templateId)
-
adminDeleteAllTemplates
static int adminDeleteAllTemplates(I_DomainAccess domainAccess)
-
-