org.odpi.openmetadata.commonservices.ffdc.rest.CertificationsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ffdc-services Show documentation
Show all versions of ffdc-services Show documentation
Common services for First-Failure Data Capture (FFDC).
The newest version!
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.commonservices.ffdc.rest;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import org.odpi.openmetadata.frameworks.openmetadata.metadataelements.CertificationElement;
import java.util.List;
import java.util.Objects;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
/**
* CertificationTypesResponse is the response structure used on the OMAS REST API calls that return a
* list of certifications as a response.
*/
@JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown=true)
public class CertificationsResponse extends FFDCResponseBase
{
private List elements = null;
/**
* Default constructor
*/
public CertificationsResponse()
{
super();
}
/**
* Copy/clone constructor
*
* @param template object to copy
*/
public CertificationsResponse(CertificationsResponse template)
{
super(template);
if (template != null)
{
this.elements = template.getElements();
}
}
/**
* Return the list of certification types.
*
* @return list of objects or null
*/
public List getElements()
{
return elements;
}
/**
* Set up the list of certification types.
*
* @param elements - list of objects or null
*/
public void setElements(List elements)
{
this.elements = elements;
}
/**
* JSON-style toString
*
* @return return string containing the property names and values
*/
@Override
public String toString()
{
return "CertificationsResponse{" +
"elements=" + elements +
"} " + super.toString();
}
/**
* Return comparison result based on the content of the properties.
*
* @param objectToCompare test object
* @return result of comparison
*/
@Override
public boolean equals(Object objectToCompare)
{
if (this == objectToCompare)
{
return true;
}
if (!(objectToCompare instanceof CertificationsResponse))
{
return false;
}
if (!super.equals(objectToCompare))
{
return false;
}
CertificationsResponse that = (CertificationsResponse) objectToCompare;
return Objects.equals(this.getElements(), that.getElements());
}
/**
* Return hash code for this object
*
* @return int hash code
*/
@Override
public int hashCode()
{
return Objects.hash(elements, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy