001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
006 *
007 * This library is free software; you can redistribute it and/or
008 * modify it under the terms of the GNU Lesser General Public
009 * License as published by the Free Software Foundation; either
010 * version 2.1 of the License, or (at your option) any later version.
011 *
012 * This library is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015 * Lesser General Public License for more details.
016 *
017 * For further information about Alkacon Software, please see the
018 * company website: http://www.alkacon.com
019 *
020 * For further information about OpenCms, please see the
021 * project website: http://www.opencms.org
022 *
023 * You should have received a copy of the GNU Lesser General Public
024 * License along with this library; if not, write to the Free Software
025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
026 */
027
028package org.opencms.gwt.shared;
029
030import com.google.gwt.user.client.rpc.IsSerializable;
031
032/**
033 * The permission info bean.<p>
034 */
035public class CmsPermissionInfo implements IsSerializable {
036
037    /** If view is permitted. */
038    private boolean m_hasViewPermission;
039
040    /** if write is permitted. */
041    private boolean m_hasWritePermission;
042
043    /** The no edit reason. */
044    private String m_noEditReason;
045
046    /**
047     * Constructor.<p>
048     *
049     * @param hasViewPermission if view is permitted
050     * @param hasWritePermission is write is permitted
051     * @param noEditReason the no edit reason
052     */
053    public CmsPermissionInfo(boolean hasViewPermission, boolean hasWritePermission, String noEditReason) {
054
055        m_hasViewPermission = hasViewPermission;
056        m_hasWritePermission = hasWritePermission;
057        m_noEditReason = noEditReason;
058    }
059
060    /**
061     * Constructor for serialization only.<p>
062     */
063    protected CmsPermissionInfo() {
064
065        // nothing to do
066    }
067
068    /**
069     * Returns the noEditReason.<p>
070     *
071     * @return the noEditReason
072     */
073    public String getNoEditReason() {
074
075        return m_noEditReason;
076    }
077
078    /**
079     * Returns the hasViewPermission.<p>
080     *
081     * @return the hasViewPermission
082     */
083    public boolean hasViewPermission() {
084
085        return m_hasViewPermission;
086    }
087
088    /**
089     * Returns the hasWritePermission.<p>
090     *
091     * @return the hasWritePermission
092     */
093    public boolean hasWritePermission() {
094
095        return m_hasWritePermission;
096    }
097
098    /**
099     * Sets the no edit reason.<p>
100     *
101     * @param noEditReason the no edit reason
102     */
103    public void setNoEditReason(String noEditReason) {
104
105        m_noEditReason = noEditReason;
106    }
107
108}