001    /**
002     * Copyright (c) 2000-2013 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.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    }