All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dottydingo.hyperion.api.BaseApiObject Maven / Gradle / Ivy

The newest version!
package com.dottydingo.hyperion.api;

import java.io.Serializable;

/**
 * Base API Object
 */
public class BaseApiObject implements ApiObject
{
    private ID id;

    /**
     * {@inheritDoc}
     */
    @Override
    public ID getId()
    {
        return id;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void setId(ID id)
    {
        this.id = id;
    }

    @Override
    public boolean equals(Object o)
    {
        if (this == o)
        {
            return true;
        }
        if (!(o instanceof BaseApiObject))
        {
            return false;
        }

        BaseApiObject that = (BaseApiObject) o;

        if (id != null ? !id.equals(that.id) : that.id != null)
        {
            return false;
        }

        return true;
    }

    @Override
    public int hashCode()
    {
        return id != null ? id.hashCode() : 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy