Interface OfficeSectionManagedObject
-
- All Superinterfaces:
AdministerableManagedObject
,DependentManagedObject
,GovernerableManagedObject
- All Known Subinterfaces:
ManagedObjectNode
- All Known Implementing Classes:
ManagedObjectNodeImpl
public interface OfficeSectionManagedObject extends DependentManagedObject, AdministerableManagedObject, GovernerableManagedObject
ManagedObject
contained within anOfficeSubSection
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPreLoadAdministration(OfficeAdministration administration)
Adds anOfficeAdministration
to be done before attempting load thisManagedObject
.java.lang.String
getOfficeSectionManagedObjectName()
Obtains the name of thisOfficeSectionManagedObject
.-
Methods inherited from interface net.officefloor.compile.spi.office.AdministerableManagedObject
getAdministerableManagedObjectName
-
Methods inherited from interface net.officefloor.compile.spi.office.DependentManagedObject
getDependentManagedObjectName
-
Methods inherited from interface net.officefloor.compile.spi.office.GovernerableManagedObject
getGovernerableManagedObjectName
-
-
-
-
Method Detail
-
getOfficeSectionManagedObjectName
java.lang.String getOfficeSectionManagedObjectName()
Obtains the name of thisOfficeSectionManagedObject
.- Returns:
- Name of this
OfficeSectionManagedObject
.
-
addPreLoadAdministration
void addPreLoadAdministration(OfficeAdministration administration)
Adds an
OfficeAdministration
to be done before attempting load thisManagedObject
.The order that the
OfficeAdministration
instances are added is the order they will be done.- Parameters:
administration
-OfficeAdministration
to be done before attempting load thisManagedObject
.
-
-