Copyright© 2008-2025 Sitevision AB, all rights reserved.
@Requireable(value="CollaborationGroupType") public enum CollaborationGroupType extends Enum<CollaborationGroupType>
Example of how to get the OPEN type:
#set ($instanceCreatorUtil = $sitevisionUtils.instanceCreatorUtil)
#set ($enumClassName = 'senselogic.sitevision.api.collaboration.CollaborationGroupType')
#set ($openEnum = $instanceCreatorUtil.getEnumInstance($enumClassName, 'OPEN'))
var openEnum = require('CollaborationGroupType.OPEN');
| Enum Constant and Description |
|---|
CLOSED
The closed type.
|
MEMBER_MODERATED
The member-moderated type.
|
OPEN
The open type.
|
| Modifier and Type | Method and Description |
|---|---|
static CollaborationGroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollaborationGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Requireable(value="CollaborationGroupType.OPEN") public static final CollaborationGroupType OPEN
The open group and its content is available for everyone that can access it (READ).
Everyone that can access the open group can join it.
@Requireable(value="CollaborationGroupType.MEMBER_MODERATED") public static final CollaborationGroupType MEMBER_MODERATED
The moderated group and its content is available for everyone that can access it (READ).
New members can only be added by the group administrator.
@Requireable(value="CollaborationGroupType.CLOSED") public static final CollaborationGroupType CLOSED
The closed group and its content is only available for group members and users with permission
PermissionUtil.Permission.MANAGE_COLLABORATION_GROUP.
New members can only be added by the group administrator.
public static CollaborationGroupType[] values()
for (CollaborationGroupType c : CollaborationGroupType.values()) System.out.println(c);
public static CollaborationGroupType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullSitevision - Content Management Made Easy
Sitevision is an advanced Java enterprise portal product that implements Java Content Repository (JSR 283).
Copyright© 2008-2025 Sitevision AB, all rights reserved.