1 package com.opensymphony.webwork.interceptor; 2 3 /** 4 * Actions that want access to the Principal information from HttpServletRequest object 5 * should implement this interface. 6 * 7 * <p>This interface is only relevant if the Action is used in a servlet environment. 8 * By using this interface you will not become tied to servlet environment.</p> 9 * 10 * @author Remigijus Bauzys 11 * @version $Revision: 1.4 $ 12 */ 13 public interface PrincipalAware { 14 void setPrincipalProxy(PrincipalProxy principalProxy); 15 }