/*===========================================================================+ | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA | | All rights reserved. | +===========================================================================+ | HISTORY | +===========================================================================*/ package xxt.oracle.apps.ak.xxperson.webui; import oracle.apps.fnd.common.VersionInfo; import oracle.apps.fnd.framework.webui.OAControllerImpl; import oracle.apps.fnd.framework.webui.OAPageContext; import oracle.apps.fnd.framework.webui.beans.OAWebBean; import com.sun.java.util.collections.HashMap; import oracle.apps.fnd.framework.webui.*; import oracle.apps.fnd.framework.webui.beans.*; import oracle.apps.fnd.framework.* ; import java.io.Serializable; /** * Controller for ... */ public class xxPersonMainCO extends OAControllerImpl { public static final String RCS_ID="$Header$"; public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion(RCS_ID, "%packagename%"); /** * Layout and page setup logic for a region. * @param pageContext the current OA page context * @param webBean the web bean corresponding to the region */ public void processRequest(OAPageContext pageContext, OAWebBean webBean) { super.processRequest(pageContext, webBean); } /** * Procedure to handle form submissions for form elements in * a region. * @param pageContext the current OA page context * @param webBean the web bean corresponding to the region */ public void processFormRequest(OAPageContext pageContext, OAWebBean webBean) { super.processFormRequest(pageContext, webBean); String actionInMainPersonScreen = pageContext.getParameter(EVENT_PARAM) ; String paramPersonId = pageContext.getParameter("paramPersonId"); if (actionInMainPersonScreen.equals("deletePerson")) { Serializable paramDelete[]={actionInMainPersonScreen,paramPersonId}; OAApplicationModule am= pageContext.getApplicationModule(webBean); am.invokeMethod("deletePersonMethod", paramDelete) ; } } }