com.belladati.sdk.util.Resource 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;
/**
* A unique resource from the BellaDati API.
*
* @author Chris Hennigfeld
*/
public interface Resource extends IdElement {
/**
* Returns the ID of this resource.
*
* @return the ID of this resource
*/
String getId();
/**
* Returns the name of this resource.
*
* @return the name of this resource
*/
String getName();
}