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

com.nkasenides.athlos.persistence.WorldBasedDAO Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package com.nkasenides.athlos.persistence;

import java.util.Collection;

public interface WorldBasedDAO extends DAO {

    T get(String itemID);

    T getForWorld(String worldID, String itemID);

    Collection listForWorld(String worldID);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy