* @see PageManager#showPage(String)
*/
public static ActionConfiguration newAction( String actionId, Class<? extends Action> actionType ) {
checkArgumentNotNullAndNotEmpty( actionId, "Action Id" );
checkArgumentNotNull( actionType, "Type of Action" );
return new InternalActionConfiguration( actionId, actionType );
}