Package net.officefloor.model.section
Interface SectionRepository
-
- All Known Implementing Classes:
SectionRepositoryImpl
public interface SectionRepositoryRepository ofSectionModelinstances.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidretrieveSection(SectionModel section, ConfigurationItem configuration)Retrieves theSectionModelfrom theConfigurationItem.voidstoreSection(SectionModel section, WritableConfigurationItem configuration)Stores theSectionModelinto theConfigurationItem.
-
-
-
Method Detail
-
retrieveSection
void retrieveSection(SectionModel section, ConfigurationItem configuration) throws java.lang.Exception
Retrieves theSectionModelfrom theConfigurationItem.- Parameters:
section-SectionModel.configuration-ConfigurationItemcontaining theSectionModel.- Throws:
java.lang.Exception- If fails to retrieve theSectionModel.
-
storeSection
void storeSection(SectionModel section, WritableConfigurationItem configuration) throws java.lang.Exception
Stores theSectionModelinto theConfigurationItem.- Parameters:
section-SectionModel.configuration-WritableConfigurationItemto contain theSectionModel.- Throws:
java.lang.Exception- If fails to store theSectionModel.
-
-