org.odpi.openmetadata.accessservices.assetowner.properties.SupplementaryProperties Maven / Gradle / Ivy
/* SPDX-License-Identifier: Apache 2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.assetowner.properties;
import com.fasterxml.jackson.annotation.*;
import java.util.Objects;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* SupplementaryProperties describe additional information about a technical element (typically assets and schemas)
* that has been added as part of a governance process.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.PROPERTY,
property = "class")
@JsonSubTypes(
{
@JsonSubTypes.Type(value = EndpointProperties.class, name = "EndpointProperties"),
})
public class SupplementaryProperties extends ReferenceableProperties
{
private static final long serialVersionUID = 1L;
private String displayName = null;
private String summary = null;
private String description = null;
private String abbreviation = null;
private String usage = null;
/**
* Default constructor
*/
public SupplementaryProperties()
{
}
/**
* Copy/clone constructor. Note, this is a deep copy
*
* @param template object to copy
*/
public SupplementaryProperties(SupplementaryProperties template)
{
super(template);
if (template != null)
{
displayName = template.getDisplayName();
summary = template.getSummary();
description = template.getDescription();
abbreviation = template.getAbbreviation();
usage = template.getUsage();
}
}
/**
* Returns the stored display name property for the technical element.
* If no display name is available then null is returned.
*
* @return String name
*/
public String getDisplayName()
{
return displayName;
}
/**
* Set up the stored display name property for the technical element.
*
* @param displayName String name
*/
public void setDisplayName(String displayName)
{
this.displayName = displayName;
}
/**
* Return the short (1-2 sentence) description of the technical element.
*
* @return string text
*/
public String getSummary()
{
return summary;
}
/**
* Set up the short (1-2 sentence) description of the technical element.
*
* @param summary string text
*/
public void setSummary(String summary)
{
this.summary = summary;
}
/**
* Returns the stored description property for the technical element.
* If no description is provided then null is returned.
*
* @return String text
*/
public String getDescription()
{
return description;
}
/**
* Set up the stored description property for the technical element.
*
* @param description String text
*/
public void setDescription(String description)
{
this.description = description;
}
/**
* Return the abbreviation used for this technical element.
*
* @return string text
*/
public String getAbbreviation()
{
return abbreviation;
}
/**
* Set up the abbreviation used for this technical element.
*
* @param abbreviation string text
*/
public void setAbbreviation(String abbreviation)
{
this.abbreviation = abbreviation;
}
/**
* Return details of the expected usage of this technical element.
*
* @return string text
*/
public String getUsage()
{
return usage;
}
/**
* Set up details of the expected usage of this technical element.
*
* @param usage string text
*/
public void setUsage(String usage)
{
this.usage = usage;
}
/**
* Standard toString method.
*
* @return print out of variables in a JSON-style
*/
@Override
public String toString()
{
return "SupplementaryProperties{" +
"displayName='" + displayName + '\'' +
", summary='" + summary + '\'' +
", description='" + description + '\'' +
", abbreviation='" + abbreviation + '\'' +
", usage='" + usage + '\'' +
", qualifiedName='" + getQualifiedName() + '\'' +
", additionalProperties=" + getAdditionalProperties() +
", typeName='" + getTypeName() + '\'' +
", extendedProperties=" + getExtendedProperties() +
'}';
}
/**
* Compare the values of the supplied object with those stored in the current object.
*
* @param objectToCompare supplied object
* @return boolean result of comparison
*/
@Override
public boolean equals(Object objectToCompare)
{
if (this == objectToCompare)
{
return true;
}
if (objectToCompare == null || getClass() != objectToCompare.getClass())
{
return false;
}
if (!super.equals(objectToCompare))
{
return false;
}
SupplementaryProperties that = (SupplementaryProperties) objectToCompare;
return Objects.equals(getDisplayName(), that.getDisplayName()) &&
Objects.equals(getSummary(), that.getSummary()) &&
Objects.equals(getDescription(), that.getDescription()) &&
Objects.equals(getAbbreviation(), that.getAbbreviation()) &&
Objects.equals(getUsage(), that.getUsage());
}
/**
* Return has code based on properties.
*
* @return int
*/
@Override
public int hashCode()
{
return Objects.hash(super.hashCode(), getDisplayName(), getSummary(), getDescription(), getAbbreviation(), getUsage());
}
}