Interface OfficeTeamRegistry
-
- All Known Subinterfaces:
OfficeNode
- All Known Implementing Classes:
OfficeNodeImpl
public interface OfficeTeamRegistry
Factory for the creation of anOfficeTeam
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OfficeTeamNode
createOfficeTeam(java.lang.String officeTeamName)
Creates theOfficeTeamNode
.OfficeTeamNode[]
getOfficeTeams()
Obtains theOfficeTeamNode
instances.
-
-
-
Method Detail
-
getOfficeTeams
OfficeTeamNode[] getOfficeTeams()
Obtains theOfficeTeamNode
instances.- Returns:
OfficeTeamNode
instances.
-
createOfficeTeam
OfficeTeamNode createOfficeTeam(java.lang.String officeTeamName)
Creates the
OfficeTeamNode
.The name of the
OfficeTeamNode
may be adjusted to ensure uniqueness.- Parameters:
officeTeamName
-OfficeTeam
name.- Returns:
OfficeTeamNode
.
-
-