01: /*
02: * UserDAO.java
03: *
04: * Created on 28 de marzo de 2005, 13:45
05: */
06:
07: package org.manentia.kasai.operative;
08:
09: import java.util.Collection;
10:
11: import org.manentia.kasai.exceptions.DataAccessException;
12:
13: import com.manentia.commons.xml.XMLException;
14:
15: /**
16: *
17: * @author rzuasti
18: */
19: public interface OperativeDAO {
20: public Collection listGroupsOperative(String operative,
21: String object) throws DataAccessException, XMLException;
22:
23: public Collection list(String idOperative)
24: throws DataAccessException;
25:
26: public Collection listUsersOperative(String operative, String object)
27: throws DataAccessException, XMLException;
28: }
|