org.ahp.vinavidai.quiz.action.DisplayCreateQuizConfirmation.java Source code

Java tutorial

Introduction

Here is the source code for org.ahp.vinavidai.quiz.action.DisplayCreateQuizConfirmation.java

Source

/*
 * Copyright 2012 Anita Onnuvel
 * 
 * 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.ahp.vinavidai.quiz.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.ahp.commons.action.AhpAbstractDisplayAction;
import org.ahp.core.actions.AhpActionHelper;
import org.ahp.core.pojo.User;
import org.ahp.vinavidai.enums.NavigateActions;
import org.ahp.vinavidai.quiz.form.CreateQuestionForm;
import org.apache.commons.lang3.StringUtils;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @author Anita Onnuvel
 * 
 * @struts.action path="/DisplayCreateQuizConfirmation"
 *                name="CreateQuestionForm" scope="session" validate="false"
 * 
 * @struts.action-forward name="DisplayCreateQuizConfirmation"
 *                        path="/quiz/CreateQuizConfirmation.jsp"
 * 
 */
public class DisplayCreateQuizConfirmation extends AhpAbstractDisplayAction {

    final static Logger LOGGER = LoggerFactory.getLogger(DisplayCreateQuizConfirmation.class);

    @Override
    public ActionForward display(ActionMapping pActionMapping, ActionForm pActionForm,
            HttpServletRequest pHttpServletRequest, HttpServletResponse pHttpServletResponse) {
        User lLoggedInUser = AhpActionHelper.getLoggedInUser(pHttpServletRequest);
        CreateQuestionForm lCreateQuizForm = (CreateQuestionForm) pActionForm;
        String lNextPage = StringUtils.trimToEmpty(lCreateQuizForm.getNextPage());
        ActionForward lActionForward = pActionMapping
                .findForward(NavigateActions.DisplayCreateQuizConfirmation.toString());
        if (NavigateActions.DisplayCreateQuizConfirmation.toString().equals(lNextPage)) {
            lActionForward = pActionMapping.findForward(NavigateActions.DisplayCreateQuizConfirmation.toString());
        }
        return lActionForward;
    }
}