01: package com.technoetic.xplanner.domain.repository;
02:
03: import java.util.Map;
04:
05: public interface AttributeRepository {
06: void setAttribute(int targetId, String name, String value)
07: throws RepositoryException;
08:
09: void delete(int targetId, String name) throws RepositoryException;
10:
11: Map getAttributes(int targetId, String prefix)
12: throws RepositoryException;
13:
14: String getAttribute(int targetId, String name)
15: throws RepositoryException;
16: }
|