org.odpi.openmetadata.accessservices.assetowner.properties.MeaningProperties 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.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.Objects;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* MeaningProperties is a cut-down summary of a glossary term to aid the asset consumer in understanding the content
* of an asset.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class MeaningProperties extends ReferenceableProperties
{
private static final long serialVersionUID = 1L;
/*
* Attributes of a meaning object definition
*/
private String name = null;
private String description = null;
/**
* Default constructor
*/
public MeaningProperties()
{
super();
}
/**
* Copy/clone constructor.
*
* @param template element to copy
*/
public MeaningProperties(MeaningProperties template)
{
super(template);
if (template != null)
{
name = template.getName();
description = template.getDescription();
}
}
/**
* Return the glossary term name.
*
* @return String name
*/
public String getName()
{
return name;
}
/**
* Set up the glossary term name.
*
* @param name String name
*/
public void setName(String name)
{
this.name = name;
}
/**
* Return the description of the glossary term.
*
* @return String description
*/
public String getDescription()
{
return description;
}
/**
* Set up the description of the glossary term.
*
* @param description String description
*/
public void setDescription(String description)
{
this.description = description;
}
/**
* Standard toString method.
*
* @return print out of variables in a JSON-style
*/
@Override
public String toString()
{
return "MeaningProperties{" +
"name='" + name + '\'' +
", description='" + description + '\'' +
", typeName='" + getTypeName() + '\'' +
", qualifiedName='" + getQualifiedName() + '\'' +
", additionalProperties=" + getAdditionalProperties() +
", 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;
}
MeaningProperties that = (MeaningProperties) objectToCompare;
return Objects.equals(name, that.name) &&
Objects.equals(description, that.description);
}
/**
* Create a hash code for this element type.
*
* @return int hash code
*/
@Override
public int hashCode()
{
return Objects.hash(super.hashCode(), name, description);
}
}