01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow.util;
06:
07: import com.opensymphony.module.propertyset.PropertySet;
08:
09: /**
10: * DOCUMENT ME!
11: *
12: * @author $author$
13: * @version $Revision: 1.1 $
14: */
15: public interface PropertySetDelegate {
16: //~ Methods ////////////////////////////////////////////////////////////////
17:
18: PropertySet getPropertySet(long entryId);
19: }
|