01: package com.technoetic.xplanner.domain.repository;
02:
03: public interface RoleAssociationRepository extends ObjectRepository {
04: void deleteAllForPersonOnProject(int personId, int projectId)
05: throws RepositoryException;
06:
07: void deleteForPersonOnProject(String roleName, int personId,
08: int projectId) throws RepositoryException;
09:
10: void insertForPersonOnProject(String roleName, int personId,
11: int projectId) throws RepositoryException;
12: }
|