org.odpi.openmetadata.accessservices.digitalarchitecture.properties.ValidValuesImplProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digital-architecture-api Show documentation
Show all versions of digital-architecture-api Show documentation
API classes for the Digital Architecture Open Metadata Access Service (OMAS).
The newest version!
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.digitalarchitecture.properties;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.*;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* ValidValuesImplProperties is a java bean used to associate a reference data asset with a valid value.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class ValidValuesImplProperties extends RelationshipProperties
{
private String symbolicName = null;
private String implementationValue = null;
private Map additionalValues = null;
/**
* Default constructor
*/
public ValidValuesImplProperties()
{
}
/**
* Copy/clone constructor. Note, this is a deep copy
*
* @param template object to copy
*/
public ValidValuesImplProperties(ValidValuesImplProperties template)
{
super(template);
if (template != null)
{
symbolicName = template.getSymbolicName();
implementationValue = template.getImplementationValue();
additionalValues = template.getAdditionalValues();
}
}
/**
* Returns the symbolic name for the valid value that is used to look up the implementation value.
*
* @return String name
*/
public String getSymbolicName()
{
return symbolicName;
}
/**
* Set up the symbolic name for the valid value that is used to look up the implementation value.
*
* @param symbolicName String name
*/
public void setSymbolicName(String symbolicName)
{
this.symbolicName = symbolicName;
}
/**
* Returns the implementation value for the valid value used in a particular system.
*
* @return String value
*/
public String getImplementationValue()
{
return implementationValue;
}
/**
* Set up the implementation value for the valid value used in a particular system.
*
* @param implementationValue String value
*/
public void setImplementationValue(String implementationValue)
{
this.implementationValue = implementationValue;
}
/**
* Return the additional values associated with the symbolic name.
*
* @return name-value pairs for additional values
*/
public Map getAdditionalValues()
{
if (additionalValues == null)
{
return null;
}
else if (additionalValues.isEmpty())
{
return null;
}
else
{
return new HashMap<>(additionalValues);
}
}
/**
* Set up the additional values associated with the symbolic name.
*
* @param additionalValues name-value pairs for additional values
*/
public void setAdditionalValues(Map additionalValues)
{
this.additionalValues = additionalValues;
}
/**
* Standard toString method.
*
* @return print out of variables in a JSON-style
*/
@Override
public String toString()
{
return "ValidValuesImplProperties{" +
"effectiveFrom=" + getEffectiveFrom() +
", effectiveTo=" + getEffectiveTo() +
", extendedProperties=" + getExtendedProperties() +
", symbolicName='" + symbolicName + '\'' +
", implementationValue='" + implementationValue + '\'' +
", additionalValues=" + additionalValues +
'}';
}
/**
* 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;
}
ValidValuesImplProperties asset = (ValidValuesImplProperties) objectToCompare;
return Objects.equals(getSymbolicName(), asset.getSymbolicName()) &&
Objects.equals(getImplementationValue(), asset.getImplementationValue()) &&
Objects.equals(getAdditionalValues(), asset.getAdditionalValues());
}
/**
* Return hash code based on properties.
*
* @return int
*/
@Override
public int hashCode()
{
return Objects.hash(super.hashCode(), getSymbolicName(), getImplementationValue(), getAdditionalValues());
}
}