01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork.config;
06:
07: import com.opensymphony.xwork.ActionInvocation;
08:
09: /**
10: * Resolves references declared in the action configuration from an external source
11: */
12: public interface ExternalReferenceResolver {
13:
14: public void resolveReferences(ActionInvocation invocation)
15: throws ReferenceResolverException;
16: }
|