001    /**
002     * Copyright (c) 2000-2011 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.model.impl;
016    
017    import com.liferay.portal.kernel.exception.PortalException;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.model.Group;
020    import com.liferay.portal.service.GroupLocalServiceUtil;
021    
022    /**
023     * @author Brian Wing Shun Chan
024     * @author Jorge Ferrer
025     */
026    public class UserGroupImpl extends UserGroupBaseImpl {
027    
028            public UserGroupImpl() {
029            }
030    
031            public Group getGroup() throws PortalException, SystemException {
032                    return GroupLocalServiceUtil.getUserGroupGroup(
033                            getCompanyId(), getUserGroupId());
034            }
035    
036            public int getPrivateLayoutsPageCount()
037                    throws PortalException, SystemException {
038    
039                    Group group = getGroup();
040    
041                    return group.getPrivateLayoutsPageCount();
042            }
043    
044            public boolean hasPrivateLayouts() throws PortalException, SystemException {
045                    if (getPrivateLayoutsPageCount() > 0) {
046                            return true;
047                    }
048                    else {
049                            return false;
050                    }
051            }
052    
053            public int getPublicLayoutsPageCount()
054                    throws PortalException, SystemException {
055    
056                    Group group = getGroup();
057    
058                    return group.getPublicLayoutsPageCount();
059            }
060    
061            public boolean hasPublicLayouts() throws PortalException, SystemException {
062                    if (getPublicLayoutsPageCount() > 0) {
063                            return true;
064                    }
065                    else {
066                            return false;
067                    }
068            }
069    
070    }