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