001/*
002 * The Kuali Financial System, a comprehensive financial management system for higher education.
003 * 
004 * Copyright 2005-2014 The Kuali Foundation
005 * 
006 * This program is free software: you can redistribute it and/or modify
007 * it under the terms of the GNU Affero General Public License as
008 * published by the Free Software Foundation, either version 3 of the
009 * License, or (at your option) any later version.
010 * 
011 * This program is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014 * GNU Affero General Public License for more details.
015 * 
016 * You should have received a copy of the GNU Affero General Public License
017 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
018 */
019package org.kuali.kfs.module.bc.businessobject;
020
021import java.io.Serializable;
022import java.util.HashMap;
023import java.util.Map;
024
025/**
026 * Holds document action and edit mode Maps for session storage
027 */
028public class BudgetConstructionAuthorizationStatus implements Serializable {
029    private Map<String, String> editingMode;
030    private Map<String, String> documentActions;
031
032    /**
033     * Default Constructor
034     */
035    public BudgetConstructionAuthorizationStatus() {
036        editingMode = new HashMap<String, String>();
037        documentActions = new HashMap<String, String>();
038    }
039
040    /**
041     * Gets the editingMode attribute.
042     * 
043     * @return Returns the editingMode.
044     */
045    public Map<String, String> getEditingMode() {
046        return editingMode;
047    }
048
049    /**
050     * Sets the editingMode attribute value.
051     * 
052     * @param editingMode The editingMode to set.
053     */
054    public void setEditingMode(Map<String, String> editingMode) {
055        this.editingMode = editingMode;
056    }
057
058    /**
059     * Gets the documentActions attribute.
060     * 
061     * @return Returns the documentActions.
062     */
063    public Map<String, String> getDocumentActions() {
064        return documentActions;
065    }
066
067    /**
068     * Sets the documentActions attribute value.
069     * 
070     * @param documentActions The documentActions to set.
071     */
072    public void setDocumentActions(Map<String, String> documentActions) {
073        this.documentActions = documentActions;
074    }
075
076}