com.belladati.sdk.util.IdElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.util;
/**
* An element with a unique ID. This can be the element's own ID or the ID of a
* resource it points to.
*
* @author Chris Hennigfeld
*/
public interface IdElement {
/**
* Returns the ID of this element, or the ID of the item it represents.
*
* @return the ID of this element, or the ID of the item it represents
*/
String getId();
}