01: package com.opensymphony.webwork.interceptor;
02:
03: /**
04: * Actions that want access to the Principal information from HttpServletRequest object
05: * should implement this interface.
06: *
07: * <p>This interface is only relevant if the Action is used in a servlet environment.
08: * By using this interface you will not become tied to servlet environment.</p>
09: *
10: * @author Remigijus Bauzys
11: * @version $Revision: 2335 $
12: */
13: public interface PrincipalAware {
14: void setPrincipalProxy(PrincipalProxy principalProxy);
15: }
|