001
014
015 package com.liferay.portal.model;
016
017
026 public interface Group extends GroupModel, PersistedModel {
027
032 public long getDefaultPrivatePlid();
033
034 public long getDefaultPublicPlid();
035
036 public java.lang.String getDescriptiveName()
037 throws com.liferay.portal.kernel.exception.PortalException,
038 com.liferay.portal.kernel.exception.SystemException;
039
040 public com.liferay.portal.model.Group getLiveGroup();
041
042 public long getOrganizationId();
043
044 public java.lang.String getPathFriendlyURL(boolean privateLayout,
045 com.liferay.portal.theme.ThemeDisplay themeDisplay);
046
047 public com.liferay.portal.model.LayoutSet getPrivateLayoutSet();
048
049 public int getPrivateLayoutsPageCount();
050
051 public com.liferay.portal.model.LayoutSet getPublicLayoutSet();
052
053 public int getPublicLayoutsPageCount();
054
055 public com.liferay.portal.model.Group getStagingGroup();
056
057 public java.lang.String getTypeLabel();
058
059 public java.lang.String getTypeSettings();
060
061 public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties();
062
063 public java.lang.String getTypeSettingsProperty(java.lang.String key);
064
065 public java.lang.String getWorkflowRoleNames();
066
067 public int getWorkflowStages();
068
069 public boolean hasPrivateLayouts();
070
071 public boolean hasPublicLayouts();
072
073 public boolean hasStagingGroup();
074
075 public boolean isCommunity();
076
077 public boolean isCompany();
078
079 public boolean isControlPanel();
080
081 public boolean isGuest();
082
083 public boolean isLayout();
084
085 public boolean isLayoutPrototype();
086
087 public boolean isLayoutSetPrototype();
088
089 public boolean isOrganization();
090
091 public boolean isStaged();
092
093 public boolean isStagedPortlet(java.lang.String portletId);
094
095 public boolean isStagedRemotely();
096
097 public boolean isStagingGroup();
098
099 public boolean isUser();
100
101 public boolean isUserGroup();
102
103 public boolean isWorkflowEnabled();
104
105 public void setTypeSettings(java.lang.String typeSettings);
106
107 public void setTypeSettingsProperties(
108 com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties);
109 }