Package org.jmanage.webui.taglib.html

Source Code of org.jmanage.webui.taglib.html.FormTag

/**
* Copyright 2004-2005 jManage.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jmanage.webui.taglib.html;

import org.jmanage.webui.util.RequestParams;
import org.jmanage.util.StringUtils;

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.ServletRequest;
import java.io.IOException;

/**
*
* date:  Jun 20, 2004
* @author  Rakesh Kalra
*/
@SuppressWarnings("serial")
public class FormTag extends org.apache.struts.taglib.html.FormTag {

    private static final String HIDDEN_FIELD_APP_ID_BEGIN =
            "<input type=\"hidden\" name=\"" + RequestParams.APPLICATION_ID + "\" value=\"" ;
    private static final String HIDDEN_FIELD_OBJECT_NAME_BEGIN =
            "<input type=\"hidden\" name=\"" + RequestParams.OBJECT_NAME + "\" value=\"" ;
    private static final String HIDDEN_FIELD_END =
            "\"/>";

    /**
     * Render the beginning of this form.
     *
     * @exception JspException if a JSP exception has occurred
     */
    public int doStartTag() throws JspException {
        int result = super.doStartTag();
        addHiddenFields();
        return result;
    }

    private void addHiddenFields()
        throws JspException{
        try {
            final ServletRequest request = pageContext.getRequest();
            final JspWriter writer = pageContext.getOut();
            String applicationId =
                    request.getParameter(RequestParams.APPLICATION_ID);
            if(applicationId != null){
                writer.println();
                writer.print(HIDDEN_FIELD_APP_ID_BEGIN);
                writer.print(applicationId);
                writer.println(HIDDEN_FIELD_END);
            }
            String objectName =
                    request.getParameter(RequestParams.OBJECT_NAME);
            if(objectName != null){
                writer.print(HIDDEN_FIELD_OBJECT_NAME_BEGIN);
                writer.print(StringUtils.htmlEscape(objectName));
                writer.println(HIDDEN_FIELD_END);
            }

        } catch (IOException e) {
            throw new JspException(e);
        }
    }
}
TOP

Related Classes of org.jmanage.webui.taglib.html.FormTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.