org.odpi.openmetadata.accessservices.assetowner.rest.OwnerRequestBody Maven / Gradle / Ivy
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.assetowner.rest;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import org.odpi.openmetadata.frameworks.connectors.properties.beans.OwnerType;
import java.util.Objects;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* OwnerRequestBody provides a structure for passing information about an asset owner as a request body over a REST API.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class OwnerRequestBody extends AssetOwnerOMASAPIRequestBody
{
private static final long serialVersionUID = 1L;
private OwnerType ownerType = null;
private String ownerId = null;
private String ownerTypeName = null;
private String ownerPropertyName = null;
/**
* Default constructor
*/
public OwnerRequestBody()
{
}
/**
* Copy/clone constructor
*
* @param template object to copy
*/
public OwnerRequestBody(OwnerRequestBody template)
{
super(template);
if (template != null)
{
this.ownerType = template.getOwnerType();
this.ownerId = template.getOwnerId();
this.ownerTypeName = template.getOwnerTypeName();
this.ownerPropertyName = template.getOwnerPropertyName();
}
}
/**
* Return the type of owner.
*
* @return string
*/
@Deprecated
public OwnerType getOwnerType()
{
return ownerType;
}
/**
* Set up the type of owner.
*
* @param ownerType string
*/
@Deprecated
public void setOwnerType(OwnerType ownerType)
{
this.ownerType = ownerType;
}
/**
* Return the owner Id.
*
* @return string identifier
*/
public String getOwnerId()
{
return ownerId;
}
/**
* Set up the owner id.
*
* @param ownerId identifier.
*/
public void setOwnerId(String ownerId)
{
this.ownerId = ownerId;
}
public String getOwnerTypeName()
{
return ownerTypeName;
}
public void setOwnerTypeName(String ownerTypeName)
{
this.ownerTypeName = ownerTypeName;
}
public String getOwnerPropertyName()
{
return ownerPropertyName;
}
public void setOwnerPropertyName(String ownerPropertyName)
{
this.ownerPropertyName = ownerPropertyName;
}
/**
* JSON-style toString.
*
* @return list of properties and their values.
*/
@Override
public String toString()
{
return "OwnerRequestBody{" +
"ownerType=" + ownerType +
", ownerId='" + ownerId + '\'' +
", ownerTypeName='" + ownerTypeName + '\'' +
", ownerPropertyName='" + ownerPropertyName + '\'' +
'}';
}
/**
* Equals method that returns true if containing properties are the same.
*
* @param objectToCompare object to compare
* @return boolean result of comparison
*/
@Override
public boolean equals(Object objectToCompare)
{
if (this == objectToCompare)
{
return true;
}
if (objectToCompare == null || getClass() != objectToCompare.getClass())
{
return false;
}
OwnerRequestBody that = (OwnerRequestBody) objectToCompare;
return ownerType == that.ownerType &&
Objects.equals(ownerId, that.ownerId) &&
Objects.equals(ownerTypeName, that.ownerTypeName) &&
Objects.equals(ownerPropertyName, that.ownerPropertyName);
}
/**
* Return hash code for this object
*
* @return int hash code
*/
@Override
public int hashCode()
{
return Objects.hash(getOwnerType(), getOwnerId(), getOwnerTypeName(), getOwnerPropertyName());
}
}