001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.googleapps;
016    
017    /**
018     * @author Brian Wing Shun Chan
019     */
020    public class GGroup {
021    
022            public String getDescription() {
023                    return _description;
024            }
025    
026            public String getEmailAddress() {
027                    return _emailAddress;
028            }
029    
030            public String getEmailPermission() {
031                    return _emailPermission;
032            }
033    
034            public String getName() {
035                    return _name;
036            }
037    
038            public String getPermissionPreset() {
039                    return _permissionPreset;
040            }
041    
042            public void setDescription(String description) {
043                    _description = description;
044            }
045    
046            public void setEmailAddress(String emailAddress) {
047                    _emailAddress = emailAddress;
048            }
049    
050            public void setEmailPermission(String emailPermission) {
051                    _emailPermission = emailPermission;
052            }
053    
054            public void setName(String name) {
055                    _name = name;
056            }
057    
058            public void setPermissionPreset(String permissionPreset) {
059                    _permissionPreset = permissionPreset;
060            }
061    
062            private String _description;
063            private String _emailAddress;
064            private String _emailPermission;
065            private String _name;
066            private String _permissionPreset;
067    
068    }