001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model.impl;
016    
017    import com.liferay.portal.model.Permission;
018    
019    /**
020     * @author Brian Wing Shun Chan
021     */
022    public class PermissionImpl implements Permission {
023    
024            public PermissionImpl() {
025            }
026    
027            public String getActionId() {
028                    return _actionId;
029            }
030    
031            public String getName() {
032                    return _name;
033            }
034    
035            public String getPrimKey() {
036                    return _primKey;
037            }
038    
039            public int getScope() {
040                    return _scope;
041            }
042    
043            public void setActionId(String actionId) {
044                    _actionId = actionId;
045            }
046    
047            public void setName(String name) {
048                    _name = name;
049            }
050    
051            public void setPrimKey(String primKey) {
052                    _primKey = primKey;
053            }
054    
055            public void setScope(int scope) {
056                    _scope = scope;
057            }
058    
059            private String _actionId;
060            private String _name;
061            private String _primKey;
062            private int _scope;
063    
064    }