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

com.arm.mbed.cloud.sdk.common.SdkModel 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.common;

import java.io.Serializable;

import com.arm.mbed.cloud.sdk.annotations.Preamble;

@Preamble(description = "SDK Model object")
public interface SdkModel extends Serializable, Cloneable {
    /**
     * Clones the model object.
     * 
     * @return a clone.
     */
    SdkModel clone();

    /**
     * Determines whether the model instance is valid i.e. all required fields have been set.
     * 
     * @return true if instance is valid. False otherwise.
     */
    boolean isValid();

    /**
     * Gets model id.
     * 
     * @return the id of the object as a String.
     */
    String getId();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy