/*===========================================================================+
| Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
| All rights reserved. |
+===========================================================================+
| HISTORY |
+===========================================================================*/
package ItemStyles.oracle.apps.fnd.webui;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
/**
* Controller for ...
*/
public class LinkImageCO 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 eventNameStr = pageContext.getParameter(EVENT_PARAM);
if (eventNameStr !=null && "dynamicLinkEvent".equals(eventNameStr))
{
OAException infoMsg = new OAException (" User clicked on Dynamic Event", OAException.INFORMATION);
throw infoMsg;
}
//addEvent
else if (eventNameStr !=null && "addEvent".equals(eventNameStr))
{
OAException infoMsg = new OAException (" User clicked on Add Image Event", OAException.INFORMATION);
throw infoMsg;
}
//deleteEvent
else if (eventNameStr !=null && "deleteEvent".equals(eventNameStr))
{
String nameStr = pageContext.getParameter ("pName");
OAException infoMsg = new OAException (" User clicked on Add Image Event"+"Parameter Value-->"+nameStr, OAException.INFORMATION);
throw infoMsg;
}
}
}
| Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
| All rights reserved. |
+===========================================================================+
| HISTORY |
+===========================================================================*/
package ItemStyles.oracle.apps.fnd.webui;
import oracle.apps.fnd.common.VersionInfo;
import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.webui.OAControllerImpl;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
/**
* Controller for ...
*/
public class LinkImageCO 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 eventNameStr = pageContext.getParameter(EVENT_PARAM);
if (eventNameStr !=null && "dynamicLinkEvent".equals(eventNameStr))
{
OAException infoMsg = new OAException (" User clicked on Dynamic Event", OAException.INFORMATION);
throw infoMsg;
}
//addEvent
else if (eventNameStr !=null && "addEvent".equals(eventNameStr))
{
OAException infoMsg = new OAException (" User clicked on Add Image Event", OAException.INFORMATION);
throw infoMsg;
}
//deleteEvent
else if (eventNameStr !=null && "deleteEvent".equals(eventNameStr))
{
String nameStr = pageContext.getParameter ("pName");
OAException infoMsg = new OAException (" User clicked on Add Image Event"+"Parameter Value-->"+nameStr, OAException.INFORMATION);
throw infoMsg;
}
}
}