01: package org.objectweb.salome_tmf.api.sql;
02:
03: import java.rmi.Remote;
04:
05: import org.objectweb.salome_tmf.api.data.LockInfoWrapper;
06:
07: public interface ISQLSalomeLock extends Remote {
08:
09: public LockInfoWrapper isLock(int projectID) throws Exception;
10:
11: public void insert(int projectID, int personneId, int lock_code,
12: int action_code, String info, int pid) throws Exception;
13:
14: public void delete(int projectID, int pid) throws Exception;
15:
16: public void delete(int projectID) throws Exception;
17:
18: public LockInfoWrapper[] getAllProjectLocks(int projectID)
19: throws Exception;
20: }
|