001/*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.select.document.web;
017
018import org.apache.struts.action.ActionForm;
019import org.apache.struts.action.ActionForward;
020import org.apache.struts.action.ActionMapping;
021import org.kuali.ole.select.document.OleDefaultTableColumnValueDocument;
022import org.kuali.rice.core.api.util.RiceConstants;
023import org.kuali.rice.core.api.util.RiceKeyConstants;
024import org.kuali.rice.kns.util.KNSGlobalVariables;
025import org.kuali.rice.kns.web.struts.action.KualiTransactionalDocumentActionBase;
026
027import javax.servlet.http.HttpServletRequest;
028import javax.servlet.http.HttpServletResponse;
029
030public class OleDefaultTableColumnValueAction extends KualiTransactionalDocumentActionBase {
031
032    private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(OleDefaultTableColumnValueAction.class);
033
034    public OleDefaultTableColumnValueAction() {
035        super();
036    }
037
038    @Override
039    public ActionForward execute(ActionMapping mapping, ActionForm form,
040                                 HttpServletRequest request, HttpServletResponse response) throws Exception {
041        return super.execute(mapping, form, request, response);
042
043    }
044
045    public ActionForward start(ActionMapping mapping, ActionForm form,
046                               HttpServletRequest request, HttpServletResponse response) throws Exception {
047        return super.docHandler(mapping, form, request, response);
048    }
049
050    @Override
051    public ActionForward docHandler(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
052        ActionForward actionForward = super.docHandler(mapping, form, request, response);
053        return actionForward;
054
055    }
056
057    public ActionForward valueSubmit(ActionMapping mapping, ActionForm form,
058                                     HttpServletRequest request, HttpServletResponse response) throws Exception {
059
060        OleDefaultTableColumnValueForm oleDefaultTableColumnValueForm = (OleDefaultTableColumnValueForm) form;
061        OleDefaultTableColumnValueDocument oleDefaultTableColumnValueDocument = (OleDefaultTableColumnValueDocument) oleDefaultTableColumnValueForm.getDocument();
062        oleDefaultTableColumnValueDocument.valueSubmit();
063        KNSGlobalVariables.getMessageList().add(RiceKeyConstants.MESSAGE_ROUTE_SUCCESSFUL);
064        return mapping.findForward(RiceConstants.MAPPING_BASIC);
065    }
066
067}