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

com.arm.mbed.cloud.sdk.billing.model.AbstractBillingEntity Maven / Gradle / Ivy

Go to download

The Pelion Cloud SDK (formerly known as Mbed Cloud SDK) provides a simplified interface to the Pelion Cloud APIs by exposing functionality using conventions and paradigms familiar to Java developers.

There is a newer version: 2.5.0
Show newest version
package com.arm.mbed.cloud.sdk.billing.model;

import com.arm.mbed.cloud.sdk.annotations.Internal;
import com.arm.mbed.cloud.sdk.annotations.Preamble;
import com.arm.mbed.cloud.sdk.common.SdkModel;

@Preamble(description = "An abstract model describing a billing entity")
@Internal
public abstract class AbstractBillingEntity implements SdkModel {

    /**
     * Serialisation id.
     */
    private static final long serialVersionUID = -3502564898448216026L;
    protected String id;

    /**
     * Constructor.
     *
     * @param id
     *            id
     */
    public AbstractBillingEntity(String id) {
        super();
        setId(id);
    }

    @SuppressWarnings("PMD.EmptyMethodInAbstractClassShouldBeAbstract")
    @Override
    public boolean isValid() {
        return true;
    }

    /**
     * Gets the billing entity identifier.
     */
    @Override
    public String getId() {
        return id;
    }

    /**
     * Sets the billing entity ID.
     *
     * @param id
     *            the id to set
     */
    public void setId(String id) {
        this.id = id;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((id == null) ? 0 : id.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final AbstractBillingEntity other = (AbstractBillingEntity) obj;
        if (id == null) {
            if (other.id != null) {
                return false;
            }
        } else if (!id.equals(other.id)) {
            return false;
        }
        return true;
    }

    @Override
    public abstract AbstractBillingEntity clone();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy