Interface OfficeTeam
-
- All Superinterfaces:
OfficeFloorResponsibility
- All Known Subinterfaces:
OfficeTeamNode
- All Known Implementing Classes:
OfficeTeamNodeImpl
public interface OfficeTeam extends OfficeFloorResponsibility
- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addTypeQualification(java.lang.String qualifier, java.lang.String type)
Adds anTypeQualification
for thisOfficeTeam
.java.lang.String
getOfficeTeamName()
Obtains the name of thisOfficeTeam
.
-
-
-
Method Detail
-
getOfficeTeamName
java.lang.String getOfficeTeamName()
Obtains the name of thisOfficeTeam
.- Returns:
- Name of this
OfficeTeam
.
-
addTypeQualification
void addTypeQualification(java.lang.String qualifier, java.lang.String type)
Adds an
TypeQualification
for thisOfficeTeam
.This enables distinguishing
OfficeTeam
instances to enable, for example, dynamicTeam
assignment.- Parameters:
qualifier
- Qualifier. May benull
if no qualification.type
- Type (typically the fully qualified type).
-
-