Copyright© 2008-2018 SiteVision AB, all rights reserved.
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 group and its content is available for everyone that can access it (READ). Everyone that can access the group can join it.
@Requireable(value="CollaborationGroupType.MEMBER_MODERATED") public static final CollaborationGroupType MEMBER_MODERATED
The 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
Only members can access the group and its content. 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 - Portal and Content Management Made Easy
SiteVision is an advanced Java enterprise portal product and a portlet container (JSR 286) that implements Java Content Repository (JSR 283).
Copyright© 2008-2018 SiteVision AB, all rights reserved.