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: import com.opensymphony.module.propertyset.PropertySetManager;
09:
10: import java.util.HashMap;
11:
12: /**
13: * DOCUMENT ME!
14: *
15: * @author $author$
16: * @version $Revision: 1.2 $
17: */
18: public class PropertySetDelegateImpl implements PropertySetDelegate {
19: //~ Methods ////////////////////////////////////////////////////////////////
20:
21: public PropertySet getPropertySet(long entryId) {
22: return PropertySetManager.getInstance("memory", new HashMap());
23: }
24: }
|