FileDocCategorySizeDatePackage
AbstractRemoteCallUIBean.javaAPI DocExample6668Mon Jul 23 13:26:36 BST 2007org.apache.struts2.components

AbstractRemoteCallUIBean

public abstract class AbstractRemoteCallUIBean extends ClosingUIBean implements RemoteUICallBean
TODO: Document AbstractRemoteCallUIBean.
author
$Author: musachy $
version
$Revision: 508280 $ $Date: 2007-02-15 21:07:56 -0500 (Thu, 15 Feb 2007) $

Fields Summary
protected String
href
protected String
errorText
protected String
afterLoading
protected String
beforeLoading
protected String
executeScripts
protected String
loadingText
protected String
listenTopics
protected String
handler
protected String
formId
protected String
formFilter
protected String
notifyTopics
protected String
showErrorTransportText
protected String
indicator
protected String
showLoadingText
Constructors Summary
public AbstractRemoteCallUIBean(com.opensymphony.xwork2.util.ValueStack stack, HttpServletRequest request, HttpServletResponse response)

        super(stack, request, response);
    
Methods Summary
public voidevaluateExtraParams()

        super.evaluateExtraParams();

        if (href != null)
            addParameter("href", findString(href));
        if (errorText != null)
            addParameter("errorText", findString(errorText));
        if (loadingText != null)
            addParameter("loadingText", findString(loadingText));
        if (afterLoading != null)
            addParameter("afterLoading", findString(afterLoading));
        if (beforeLoading != null)
            addParameter("beforeLoading", findString(beforeLoading));
        if (executeScripts != null)
            addParameter("executeScripts", findValue(executeScripts, Boolean.class));
        if (listenTopics != null)
            addParameter("listenTopics", findValue(listenTopics, String.class));
        if (notifyTopics != null)
            addParameter("notifyTopics", findValue(notifyTopics, String.class));
        if (handler != null)
            addParameter("handler", findString(handler));
        if (formId != null)
            addParameter("formId", findString(formId));
        if (formFilter != null)
            addParameter("formFilter", findString(formFilter));
        if (indicator != null)
            addParameter("indicator", findString(indicator));
        if (showErrorTransportText != null)
            addParameter("showErrorTransportText", findValue(showErrorTransportText, Boolean.class));
        else
            addParameter("showErrorTransportText", true);
        if (showLoadingText != null)
            addParameter("showLoadingText", findString(showLoadingText));
    
public voidsetAfterLoading(java.lang.String afterLoading)

        this.afterLoading = afterLoading;
    
public voidsetBeforeLoading(java.lang.String beforeLoading)

        this.beforeLoading = beforeLoading;
    
public voidsetErrorText(java.lang.String errorText)

        this.errorText = errorText;
    
public voidsetExecuteScripts(java.lang.String executeScripts)

        this.executeScripts = executeScripts;
    
public voidsetFormFilter(java.lang.String formFilter)

        this.formFilter = formFilter;
    
public voidsetFormId(java.lang.String formId)

        this.formId = formId;
    
public voidsetHandler(java.lang.String handler)

        this.handler = handler;
    
public voidsetHref(java.lang.String href)

        this.href = href;
    
public voidsetIndicator(java.lang.String indicator)

        this.indicator = indicator;
    
public voidsetListenTopics(java.lang.String listenTopics)

        this.listenTopics = listenTopics;
    
public voidsetLoadingText(java.lang.String loadingText)

        this.loadingText = loadingText;
    
public voidsetNotifyTopics(java.lang.String notifyTopics)

        this.notifyTopics = notifyTopics;
    
public voidsetShowErrorTransportText(java.lang.String showError)

        this.showErrorTransportText = showError;
    
public voidsetShowLoadingText(java.lang.String showLoadingText)

        this.showLoadingText = showLoadingText;