Interface OfficeSubSection
-
- All Known Subinterfaces:
OfficeSection,SectionNode
- All Known Implementing Classes:
SectionNodeImpl
public interface OfficeSubSectionSubSectionof anOfficeSection.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddGovernance(OfficeGovernance governance)AddsGovernancefor thisOfficeSubSection.OfficeSectionFunctiongetOfficeSectionFunction(java.lang.String taskName)Obtains theOfficeSectionFunctioninstance particular to thisOfficeSubSection.OfficeSectionManagedObjectgetOfficeSectionManagedObject(java.lang.String managedObjectName)Obtains theOfficeSectionManagedObjectparticular to thisOfficeSubSection.OfficeSectionManagedObjectSourcegetOfficeSectionManagedObjectSource(java.lang.String managedObjectSourceName)Obtains theOfficeSectionManagedObjectSourceparticular to thisOfficeSubSection.java.lang.StringgetOfficeSectionName()Obtains the name of thisOfficeSection/OfficeSubSection.OfficeSubSectiongetOfficeSubSection(java.lang.String sectionName)Obtains theOfficeSubSection.
-
-
-
Method Detail
-
getOfficeSectionName
java.lang.String getOfficeSectionName()
Obtains the name of thisOfficeSection/OfficeSubSection.- Returns:
- Name of this
OfficeSection/OfficeSubSection.
-
getOfficeSubSection
OfficeSubSection getOfficeSubSection(java.lang.String sectionName)
Obtains theOfficeSubSection.- Parameters:
sectionName- Name of theOfficeSubSectionto obtain.- Returns:
OfficeSubSection.
-
getOfficeSectionFunction
OfficeSectionFunction getOfficeSectionFunction(java.lang.String taskName)
Obtains theOfficeSectionFunctioninstance particular to thisOfficeSubSection.- Parameters:
taskName- Name of theOfficeSectionFunctionto obtain.- Returns:
OfficeSectionFunction.
-
getOfficeSectionManagedObject
OfficeSectionManagedObject getOfficeSectionManagedObject(java.lang.String managedObjectName)
Obtains theOfficeSectionManagedObjectparticular to thisOfficeSubSection.- Parameters:
managedObjectName- Name of theOfficeSectionManagedObjectto obtain.- Returns:
OfficeSectionManagedObject.
-
getOfficeSectionManagedObjectSource
OfficeSectionManagedObjectSource getOfficeSectionManagedObjectSource(java.lang.String managedObjectSourceName)
Obtains theOfficeSectionManagedObjectSourceparticular to thisOfficeSubSection.- Parameters:
managedObjectSourceName- Name of theOfficeSectionManagedObjectSourceto obtain.- Returns:
OfficeSectionManagedObjectSource.
-
addGovernance
void addGovernance(OfficeGovernance governance)
Adds
Governancefor thisOfficeSubSection.This enables providing
Governanceover allOfficeSectionFunctioninstances within theOfficeSubSectionand all its subsequentOfficeSubSectioninstances.- Parameters:
governance-OfficeGovernance.
-
-