Class ProfileIdentityProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.devops.properties.ProfileIdentityProperties
-
- All Implemented Interfaces:
Serializable
public class ProfileIdentityProperties extends Object implements Serializable
ProfileIdentityProperties describes the properties for the ProfileIdentity relationship between a profile and a user identity.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProfileIdentityProperties()Default constructorProfileIdentityProperties(ProfileIdentityProperties template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Equals method that returns true if containing properties are the same.StringgetDescription()Return the description of the user identity with respect to the individual.StringgetRoleGUID()Return the instance of the role.StringgetRoleTypeName()Return the type of the role.inthashCode()Hash code for this objectvoidsetDescription(String description)Set up the description of the user identity with respect to the individual.voidsetRoleGUID(String roleGUID)Set up the instance of the role.voidsetRoleTypeName(String roleTypeName)Set up the type of the role.StringtoString()JSON-style toString.
-
-
-
Constructor Detail
-
ProfileIdentityProperties
public ProfileIdentityProperties()
Default constructor
-
ProfileIdentityProperties
public ProfileIdentityProperties(ProfileIdentityProperties template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getRoleTypeName
public String getRoleTypeName()
Return the type of the role.- Returns:
- name
-
setRoleTypeName
public void setRoleTypeName(String roleTypeName)
Set up the type of the role.- Parameters:
roleTypeName- name
-
getRoleGUID
public String getRoleGUID()
Return the instance of the role.- Returns:
- guid
-
setRoleGUID
public void setRoleGUID(String roleGUID)
Set up the instance of the role.- Parameters:
roleGUID- guid
-
getDescription
public String getDescription()
Return the description of the user identity with respect to the individual.- Returns:
- value string
-
setDescription
public void setDescription(String description)
Set up the description of the user identity with respect to the individual.- Parameters:
description- value string
-
toString
public String toString()
JSON-style toString.
-
equals
public boolean equals(Object objectToCompare)
Equals method that returns true if containing properties are the same.
-
-