package com.opensymphony.webwork.interceptor;

/**
 * Actions that want access to the Principal information from HttpServletRequest object
 * should implement this interface.<p>
 *
 * This interface is only relevant if the Action is used in a servlet environment.<p>
 * By using this interface you will not become tied to servlet environment.
 *
 * PrincipalAware interface is used by PrincipalInterceptor.
 *
 * Date: 2004.9.4
 * Time: 12.35.54
 * @author Remigijus Bauzys
 */
public interface PrincipalAware {

    void setPrincipalProxy(PrincipalProxy principalProxy);
}
