01: /* Copyright 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;
07:
08: /**
09: * Minimal interface describes an entity that has only a key and a type. It
10: * can be cached, locked and grouped.
11: * @author Dan Ellentuck
12: * @version $Revision: 34805 $
13: */
14: public interface IBasicEntity {
15: /**
16: * @return EntityIdentifier
17: */
18: public EntityIdentifier getEntityIdentifier();
19: }
|