1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2026-01-27 05:02:47 +00:00

Updated DAO Structure

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-16 14:24:11 -03:00
parent 4952a6a47b
commit 242616d384
7 changed files with 95 additions and 133 deletions

View File

@@ -21,6 +21,7 @@ import java.util.List;
import com.l2jserver.model.id.AccountID;
import com.l2jserver.model.id.ID;
import com.l2jserver.model.id.object.CharacterID;
import com.l2jserver.model.world.Clan;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.cache.Cacheable;
import com.l2jserver.service.cache.IgnoreCaching;
@@ -41,6 +42,14 @@ public interface CharacterDAO extends DataAccessObject<L2Character>, Cacheable {
*/
L2Character load(CharacterID id);
/**
* Load the members of the given <tt>clan</tt>
*
* @param clan
* the clan
*/
void load(Clan clan);
/**
* Select an character by its name.
*