// Generated by the WOLips Templateengine Plug-in at May 22, 2008 5:06:36 PM
import com.webobjects.appserver.WOActionResults;
import com.webobjects.appserver.WORequest;
import com.webobjects.directtoweb.D2W;
import er.directtoweb.ERD2WDirectAction;
public class DirectAction extends ERD2WDirectAction {
public DirectAction(WORequest aRequest) {
super(aRequest);
}
/**
* Checks if a page configuration is allowed to render.
* Provide a more intelligent access scheme as the default just returns false. And
* be sure to read the javadoc to the super class.
* @param pageConfiguration
* @return
*/
protected boolean allowPageConfiguration(String pageConfiguration) {
return true;
}
public WOActionResults homeAction() {
return D2W.factory().defaultPage(session());
}
}