001
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
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 int getPublicLayoutsPageCount()
045 throws PortalException, SystemException {
046
047 Group group = getGroup();
048
049 return group.getPublicLayoutsPageCount();
050 }
051
052 public boolean hasPrivateLayouts() throws PortalException, SystemException {
053 if (getPrivateLayoutsPageCount() > 0) {
054 return true;
055 }
056 else {
057 return false;
058 }
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 }