Class TeamMemberProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.communityprofile.properties.PersonalRoleProperties
-
- org.odpi.openmetadata.accessservices.communityprofile.properties.TeamMemberProperties
-
- All Implemented Interfaces:
Serializable
public class TeamMemberProperties extends PersonalRoleProperties
TeamMemberProperties describes a person who is a member of a team.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TeamMemberProperties()Default constructorTeamMemberProperties(TeamMemberProperties template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.StringgetMembershipPosition()Return details of any special role as a member of the team.StringgetTeamGUID()Return the unique identifier (guid) of the team.inthashCode()Return hash code for this objectvoidsetMembershipPosition(String membershipPosition)Set up details of any special role as a member of the team.voidsetTeamGUID(String teamGUID)Set up the unique identifier (guid) of the team.StringtoString()JSON-style toString-
Methods inherited from class org.odpi.openmetadata.accessservices.communityprofile.properties.PersonalRoleProperties
getAdditionalProperties, getDescription, getDomainIdentifier, getExtendedProperties, getRoleId, getScope, getTitle, getTypeName, setAdditionalProperties, setDescription, setDomainIdentifier, setExtendedProperties, setRoleId, setScope, setTitle, setTypeName
-
-
-
-
Constructor Detail
-
TeamMemberProperties
public TeamMemberProperties()
Default constructor
-
TeamMemberProperties
public TeamMemberProperties(TeamMemberProperties template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getMembershipPosition
public String getMembershipPosition()
Return details of any special role as a member of the team.- Returns:
- membership position
-
setMembershipPosition
public void setMembershipPosition(String membershipPosition)
Set up details of any special role as a member of the team.- Parameters:
membershipPosition- membership position
-
getTeamGUID
public String getTeamGUID()
Return the unique identifier (guid) of the team.- Returns:
- string guid
-
setTeamGUID
public void setTeamGUID(String teamGUID)
Set up the unique identifier (guid) of the team.- Parameters:
teamGUID- string guid
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classPersonalRoleProperties- Returns:
- return string containing the property names and values
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.- Overrides:
equalsin classPersonalRoleProperties- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classPersonalRoleProperties- Returns:
- int hash code
-
-