Class ActorProfileRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.communityprofile.rest.CommunityProfileOMASAPIRequestBody
-
- org.odpi.openmetadata.accessservices.communityprofile.rest.ExternalSourceRequestBody
-
- org.odpi.openmetadata.accessservices.communityprofile.rest.ActorProfileRequestBody
-
- All Implemented Interfaces:
Serializable
public class ActorProfileRequestBody extends ExternalSourceRequestBody
ActorProfileRequestBody provides the request body payload for working on ActorProfile entities.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActorProfileRequestBody()Default constructorActorProfileRequestBody(ActorProfileRequestBody 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.ContributionRecordgetContributionRecord()Return the optional contribution record for the profile.ActorProfilePropertiesgetProperties()Return the properties for this profile.inthashCode()Return hash code for this objectvoidsetContributionRecord(ContributionRecord contributionRecord)Set up the optional contribution record for the profile.voidsetProperties(ActorProfileProperties properties)Set up the properties for this profile.StringtoString()JSON-style toString.-
Methods inherited from class org.odpi.openmetadata.accessservices.communityprofile.rest.ExternalSourceRequestBody
getExternalSourceGUID, getExternalSourceName, setExternalSourceGUID, setExternalSourceName
-
-
-
-
Constructor Detail
-
ActorProfileRequestBody
public ActorProfileRequestBody()
Default constructor
-
ActorProfileRequestBody
public ActorProfileRequestBody(ActorProfileRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getProperties
public ActorProfileProperties getProperties()
Return the properties for this profile.- Returns:
- properties bean
-
setProperties
public void setProperties(ActorProfileProperties properties)
Set up the properties for this profile.- Parameters:
properties- properties bean
-
getContributionRecord
public ContributionRecord getContributionRecord()
Return the optional contribution record for the profile. If this is not null, the contribution set up.- Returns:
- record
-
setContributionRecord
public void setContributionRecord(ContributionRecord contributionRecord)
Set up the optional contribution record for the profile. If this is not null, the contribution set up.- Parameters:
contributionRecord- record
-
toString
public String toString()
JSON-style toString.- Overrides:
toStringin classExternalSourceRequestBody- Returns:
- list of properties and their values.
-
equals
public boolean equals(Object objectToCompare)
Equals method that returns true if containing properties are the same.- Overrides:
equalsin classExternalSourceRequestBody- Parameters:
objectToCompare- object to compare- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classExternalSourceRequestBody- Returns:
- int hash code
-
-