* @return the WebActionContext instance
*/
public static WebActionContext getWAC() {
WebActionContext wac = (WebActionContext)CurrentThreadCache.get(KEY_AC);
if (wac == null) {
throw new ObjectCreationException("WebActionContext must be created first, for example, by a filter class.");
}
return wac;
}