com.aoindustries.website.clientarea.control.business.CancelFeedbackAction.java Source code

Java tutorial

Introduction

Here is the source code for com.aoindustries.website.clientarea.control.business.CancelFeedbackAction.java

Source

/*
 * aoweb-struts-core - Core API for legacy Struts-based site framework with AOServ Platform control panels.
 * Copyright (C) 2003-2009, 2016  AO Industries, Inc.
 *     support@aoindustries.com
 *     7262 Bull Pen Cir
 *     Mobile, AL 36695
 *
 * This file is part of aoweb-struts-core.
 *
 * aoweb-struts-core is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * aoweb-struts-core is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with aoweb-struts-core.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.aoindustries.website.clientarea.control.business;

import com.aoindustries.aoserv.client.AOServConnector;
import com.aoindustries.aoserv.client.AOServPermission;
import com.aoindustries.aoserv.client.Business;
import com.aoindustries.aoserv.client.validator.AccountingCode;
import com.aoindustries.website.PermissionAction;
import com.aoindustries.website.SiteSettings;
import com.aoindustries.website.Skin;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.validator.GenericValidator;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

/**
 * Obtains feedback during cancellation.
 *
 * @author  AO Industries, Inc.
 */
public class CancelFeedbackAction extends PermissionAction {

    @Override
    public ActionForward executePermissionGranted(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response, SiteSettings siteSettings, Locale locale,
            Skin skin, AOServConnector aoConn) throws Exception {
        String business = request.getParameter("business");
        Business bu;
        if (GenericValidator.isBlankOrNull(business)) {
            bu = null;
        } else {
            bu = aoConn.getBusinesses().get(AccountingCode.valueOf(business));
        }
        if (bu == null || !bu.canCancel()) {
            return mapping.findForward("invalid-business");
        }

        CancelFeedbackForm cancelFeedbackForm = (CancelFeedbackForm) form;
        cancelFeedbackForm.setBusiness(business);

        // Set request values
        request.setAttribute("business", bu);

        return mapping.findForward("success");
    }

    @Override
    public List<AOServPermission.Permission> getPermissions() {
        return Collections.singletonList(AOServPermission.Permission.cancel_business);
    }
}