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: import java.util.Map;
10:
11: /**
12: * @author hani Date: Mar 29, 2005 Time: 8:17:31 PM
13: */
14: public interface VariableResolver {
15: //~ Methods ////////////////////////////////////////////////////////////////
16:
17: Object translateVariables(String s, Map transientVars,
18: PropertySet ps);
19: }
|