![JAR search and dependency download from the Maven repository](/logo.png)
org.odpi.openmetadata.accessservices.digitalservice.properties.DigitalServiceProperties Maven / Gradle / Ivy
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.digitalservice.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;
/**
* DigitalServiceProperties is an object for tracking the lifecycle of one of an organization's digital services.
* The digital service instance is created when the digital service is just a concept. It is used to record
* the role and implementation style that it has along with information about how it will operate.
* As the digital service moved through its lifecycle from implementation to deployment to use, more
* information is attached to the digital service instance to support the correct management and compliance
* of the service.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class DigitalServiceProperties extends ReferenceableProperties
{
private String displayName = null;
private String description = null;
private String version = null;
/**
* Default constructor
*/
public DigitalServiceProperties()
{
super();
}
/**
* Copy/clone constructor
*
* @param template object to copy
*/
public DigitalServiceProperties(DigitalServiceProperties template)
{
super(template);
if (template != null)
{
this.displayName = template.getDisplayName();
this.description = template.getDescription();
this.version = template.getVersion();
}
}
/**
* Return the display name for this asset (normally a shortened for of the qualified name).
*
* @return string name
*/
public String getDisplayName()
{
return displayName;
}
/**
* Set up the display name for this asset (normally a shortened for of the qualified name).
*
* @param displayName string name
*/
public void setDisplayName(String displayName)
{
this.displayName = displayName;
}
/**
* Return the description for this asset.
*
* @return string description
*/
public String getDescription()
{
return description;
}
/**
* Set up the description for this asset.
*
* @param description string
*/
public void setDescription(String description)
{
this.description = description;
}
/**
* Return the version identifier for this digital service.
*
* @return String
*/
public String getVersion()
{
return version;
}
/**
* Set up the version number for this digital service.
*
* @param version String
*/
public void setVersion(String version)
{
this.version = version;
}
/**
* Standard toString method.
*
* @return print out of variables in a JSON-style
*/
@Override
public String toString()
{
return "DigitalServiceProperties{" +
"displayName='" + displayName + '\'' +
", description='" + description + '\'' +
", version='" + version + '\'' +
", qualifiedName='" + getQualifiedName() + '\'' +
", additionalProperties=" + getAdditionalProperties() +
", effectiveFrom=" + getEffectiveFrom() +
", effectiveTo=" + getEffectiveTo() +
", 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 instanceof DigitalServiceProperties))
{
return false;
}
if (! super.equals(objectToCompare))
{
return false;
}
DigitalServiceProperties that = (DigitalServiceProperties) objectToCompare;
return Objects.equals(displayName, that.displayName) &&
Objects.equals(description, that.description) &&
Objects.equals(version, that.version);
}
/**
* Return hash code based on properties.
*
* @return int
*/
@Override
public int hashCode()
{
return Objects.hash(super.hashCode(), displayName, description, version);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy