01: /* Copyright 2001, 2002 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal.groups;
07:
08: /**
09: * <code>IEntity</code> is the leaf sub-type of <code>IGroupMember</code>.
10: * <p>
11: * @author Dan Ellentuck
12: * @version $Revision: 34758 $
13: */
14: public interface IEntity extends IGroupMember {
15: }
|