com.nkasenides.athlos.persistence.UniqueDAO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athlos-core Show documentation
Show all versions of athlos-core Show documentation
An MMOG development framework.
package com.nkasenides.athlos.persistence;
/**
* Defines a Data Access Object pattern to access unique objects in DBs.
* @param The unique object type.
*/
public interface UniqueDAO extends DAO {
/**
* Retrieves a unique item.
* @return Returns a single object.
*/
T get();
}