001    /**
002     * Copyright (c) 2000-2010 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.model;
016    
017    /**
018     * The model interface for the Group service. Represents a row in the "Group_" database table, with each column mapped to a property of this class.
019     *
020     * <p>
021     * Never modify this interface directly. Add methods to {@link com.liferay.portal.model.impl.GroupImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
022     * </p>
023     *
024     * @author Brian Wing Shun Chan
025     * @see GroupModel
026     * @see com.liferay.portal.model.impl.GroupImpl
027     * @see com.liferay.portal.model.impl.GroupModelImpl
028     * @generated
029     */
030    public interface Group extends GroupModel {
031            public long getDefaultPrivatePlid();
032    
033            public long getDefaultPublicPlid();
034    
035            public java.lang.String getDescriptiveName()
036                    throws com.liferay.portal.kernel.exception.PortalException,
037                            com.liferay.portal.kernel.exception.SystemException;
038    
039            public com.liferay.portal.model.Group getLiveGroup();
040    
041            public java.lang.String getPathFriendlyURL(boolean privateLayout,
042                    com.liferay.portal.theme.ThemeDisplay themeDisplay);
043    
044            public com.liferay.portal.model.LayoutSet getPrivateLayoutSet();
045    
046            public int getPrivateLayoutsPageCount();
047    
048            public com.liferay.portal.model.LayoutSet getPublicLayoutSet();
049    
050            public int getPublicLayoutsPageCount();
051    
052            public com.liferay.portal.model.Group getStagingGroup();
053    
054            public java.lang.String getTypeLabel();
055    
056            public java.lang.String getTypeSettings();
057    
058            public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties();
059    
060            public java.lang.String getTypeSettingsProperty(java.lang.String key);
061    
062            public java.lang.String getWorkflowRoleNames();
063    
064            public int getWorkflowStages();
065    
066            public boolean hasPrivateLayouts();
067    
068            public boolean hasPublicLayouts();
069    
070            public boolean hasStagingGroup();
071    
072            public boolean isCommunity();
073    
074            public boolean isCompany();
075    
076            public boolean isControlPanel();
077    
078            public boolean isLayout();
079    
080            public boolean isLayoutPrototype();
081    
082            public boolean isLayoutSetPrototype();
083    
084            public boolean isOrganization();
085    
086            public boolean isStaged();
087    
088            public boolean isStagedPortlet(java.lang.String portletId);
089    
090            public boolean isStagedRemotely();
091    
092            public boolean isStagingGroup();
093    
094            public boolean isUser();
095    
096            public boolean isUserGroup();
097    
098            public boolean isWorkflowEnabled();
099    
100            public void setTypeSettings(java.lang.String typeSettings);
101    
102            public void setTypeSettingsProperties(
103                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties);
104    }