View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/community/client/src/java/org/astrogrid/community/client/policy/manager/PolicyManagerDelegate.java,v $</cvs:source>
3    * <cvs:author>$Author: jdt $</cvs:author>
4    * <cvs:date>$Date: 2004/11/22 13:03:04 $</cvs:date>
5    * <cvs:version>$Revision: 1.8 $</cvs:version>
6    *
7    * <cvs:log>
8    *   $Log: PolicyManagerDelegate.java,v $
9    *   Revision 1.8  2004/11/22 13:03:04  jdt
10   *   Merges from Comm_KMB_585
11   *
12   *   Revision 1.7.104.1  2004/11/05 08:55:49  KevinBenson
13   *   Moved the GroupMember out of PolicyManager in the commons and client section.
14   *   Added more unit tests for GroupMember and PermissionManager for testing.
15   *   Still have some errors that needs some fixing.
16   *
17   *   Revision 1.7  2004/06/18 13:45:19  dave
18   *   Merged development branch, dave-dev-200406081614, into HEAD
19   *
20   *   Revision 1.6.36.3  2004/06/17 15:10:03  dave
21   *   Removed unused imports (PMD report).
22   *
23   *   Revision 1.6.36.2  2004/06/17 13:38:58  dave
24   *   Tidied up old CVS log entries
25   *
26   * </cvs:log>
27   *
28   */
29  package org.astrogrid.community.client.policy.manager ;
30  
31  import org.astrogrid.community.client.service.CommunityServiceDelegate ;
32  
33  import org.astrogrid.community.common.policy.data.GroupMemberData ;
34  
35  import org.astrogrid.community.common.exception.CommunityPolicyException     ;
36  import org.astrogrid.community.common.exception.CommunityServiceException    ;
37  import org.astrogrid.community.common.exception.CommunityIdentifierException ;
38  
39  /***
40   * Interface for our PolicyManager delegate.
41   * This mirrors the PolicyManager interface without the RemoteExceptions.
42   * @see PolicyManager
43   *
44   */
45  public interface PolicyManagerDelegate
46      extends CommunityServiceDelegate, AccountManagerDelegate, GroupManagerDelegate, GroupMemberManagerDelegate, ResourceManagerDelegate, PermissionManagerDelegate
47      {
48  
49  
50      }