org.opencms.widgets
Class CmsSelectGroupWidget

java.lang.Object
  extended by org.opencms.widgets.A_CmsWidget
      extended by org.opencms.widgets.A_CmsSelectWidget
          extended by org.opencms.widgets.CmsSelectWidget
              extended by org.opencms.widgets.CmsSelectGroupWidget
All Implemented Interfaces:
I_CmsADEWidget, I_CmsWidget
Direct Known Subclasses:
CmsMultiSelectGroupWidget

public class CmsSelectGroupWidget
extends CmsSelectWidget

Provides a widget for group selection select boxes.

This widget is configurable with the following options:

To map the selected group to a permission to set, use the following mapping configuration:

<mapping element="..." mapto="permission:GROUP:+r+v|GROUP.ALL_OTHERS:|GROUP.Projectmanagers:+r+v+w+c" />

This means that the +r+v permission is written for the principal GROUP on the resource. Additionally two permissions are written as default: for ALL_OTHERS, no allowed permission is set, for Projectmanagers, "+r+v+w+c" is set.

Since:
8.0.0

Nested Class Summary
 
Nested classes/interfaces inherited from class org.opencms.widgets.A_CmsWidget
A_CmsWidget.CmsDummyWidgetDialog
 
Field Summary
protected static java.lang.String CONFIGURATION_GROUPFILTER
          Configuration option key: group filter.
protected static java.lang.String CONFIGURATION_GROUPS
          Configuration option key: groups.
protected static java.lang.String CONFIGURATION_INCLUDESUBOUS
          Configuration option key: include sub OUs.
protected static java.lang.String CONFIGURATION_OUFQN
          Configuration option key: OU fully qualified name.
 
Fields inherited from class org.opencms.widgets.A_CmsSelectWidget
CONFIGURATION_HEIGHT
 
Fields inherited from class org.opencms.widgets.A_CmsWidget
HELP_POSTFIX, LABEL_PREFIX
 
Constructor Summary
CmsSelectGroupWidget()
          Creates a new group select widget.
CmsSelectGroupWidget(java.lang.String configuration)
          Creates a group select widget with the specified select options.
 
Method Summary
 java.lang.String getConfiguration(CmsObject cms, A_CmsXmlContentValue schemaType, CmsMessages messages, CmsResource resource, java.util.Locale contentLocale)
          Returns the configuration string for the ADE content editor widget.
 java.util.List<java.lang.String> getCssResourceLinks(CmsObject cms)
          Returns a list of CSS resources required by the widget.
 java.lang.String getInitCall()
          Returns the java script initialization call.
 java.util.List<java.lang.String> getJavaScriptResourceLinks(CmsObject cms)
          Returns a list of java script resources required by the widget.
 boolean isInternal()
          Returns if this is an internal widget.
 I_CmsWidget newInstance()
          Creates a duplicate of this widget instance.
protected  java.util.List<CmsSelectWidgetOption> parseSelectOptions(CmsObject cms, CmsMessages messages, I_CmsWidgetParameter param)
          Returns the list of configured select options, parsing the configuration String if required.
protected  java.util.List<CmsSelectWidgetOption> parseSelectOptions(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param)
          Returns the list of configured select options, parsing the configuration String if required.
 
Methods inherited from class org.opencms.widgets.CmsSelectWidget
getDialogWidget, getWidgetName, getWidgetStringValue
 
Methods inherited from class org.opencms.widgets.A_CmsSelectWidget
addSelectOption, getConfiguration, getHeight, getSelectedValue, getSelectedValues, getSelectOptions, setConfiguration, setSelectOptions
 
Methods inherited from class org.opencms.widgets.A_CmsWidget
equals, getDialogHtmlEnd, getDialogIncludes, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpKey, getHelpText, getJsHelpMouseHandler, getJSIncludeFile, getLabelKey, hashCode, setEditorValue
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.opencms.widgets.I_CmsWidget
getDialogHtmlEnd, getDialogIncludes, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpText, setEditorValue
 

Field Detail

CONFIGURATION_GROUPFILTER

protected static final java.lang.String CONFIGURATION_GROUPFILTER
Configuration option key: group filter.

See Also:
Constant Field Values

CONFIGURATION_GROUPS

protected static final java.lang.String CONFIGURATION_GROUPS
Configuration option key: groups.

See Also:
Constant Field Values

CONFIGURATION_INCLUDESUBOUS

protected static final java.lang.String CONFIGURATION_INCLUDESUBOUS
Configuration option key: include sub OUs.

See Also:
Constant Field Values

CONFIGURATION_OUFQN

protected static final java.lang.String CONFIGURATION_OUFQN
Configuration option key: OU fully qualified name.

See Also:
Constant Field Values
Constructor Detail

CmsSelectGroupWidget

public CmsSelectGroupWidget()
Creates a new group select widget.


CmsSelectGroupWidget

public CmsSelectGroupWidget(java.lang.String configuration)
Creates a group select widget with the specified select options.

Parameters:
configuration - the configuration (possible options) for the group select box
Method Detail

getConfiguration

public java.lang.String getConfiguration(CmsObject cms,
                                         A_CmsXmlContentValue schemaType,
                                         CmsMessages messages,
                                         CmsResource resource,
                                         java.util.Locale contentLocale)
Description copied from interface: I_CmsADEWidget
Returns the configuration string for the ADE content editor widget.

Specified by:
getConfiguration in interface I_CmsADEWidget
Overrides:
getConfiguration in class A_CmsSelectWidget
Parameters:
cms - the OpenCms context
schemaType - the schema type
messages - the messages
resource - the edited resource
contentLocale - the content locale
Returns:
the configuration string
See Also:
I_CmsADEWidget.getConfiguration(org.opencms.file.CmsObject, org.opencms.xml.types.A_CmsXmlContentValue, org.opencms.i18n.CmsMessages, org.opencms.file.CmsResource, java.util.Locale)

getCssResourceLinks

public java.util.List<java.lang.String> getCssResourceLinks(CmsObject cms)
Description copied from class: A_CmsSelectWidget
Returns a list of CSS resources required by the widget.

Specified by:
getCssResourceLinks in interface I_CmsADEWidget
Overrides:
getCssResourceLinks in class A_CmsSelectWidget
Parameters:
cms - the current OpenCms context
Returns:
the required CSS resource links
See Also:
I_CmsADEWidget.getCssResourceLinks(org.opencms.file.CmsObject)

getInitCall

public java.lang.String getInitCall()
Description copied from class: A_CmsSelectWidget
Returns the java script initialization call.

Specified by:
getInitCall in interface I_CmsADEWidget
Overrides:
getInitCall in class A_CmsSelectWidget
Returns:
the java script initialization call
See Also:
I_CmsADEWidget.getInitCall()

getJavaScriptResourceLinks

public java.util.List<java.lang.String> getJavaScriptResourceLinks(CmsObject cms)
Description copied from class: A_CmsSelectWidget
Returns a list of java script resources required by the widget.

Specified by:
getJavaScriptResourceLinks in interface I_CmsADEWidget
Overrides:
getJavaScriptResourceLinks in class A_CmsSelectWidget
Parameters:
cms - the current OpenCms context
Returns:
the required java script resource links
See Also:
I_CmsADEWidget.getJavaScriptResourceLinks(org.opencms.file.CmsObject)

isInternal

public boolean isInternal()
Description copied from class: A_CmsSelectWidget
Returns if this is an internal widget.

Only widgets belonging to the OpenCms core should be marked as internal.

Specified by:
isInternal in interface I_CmsADEWidget
Overrides:
isInternal in class A_CmsSelectWidget
Returns:
true if this is an internal widget
See Also:
I_CmsADEWidget.isInternal()

newInstance

public I_CmsWidget newInstance()
Description copied from interface: I_CmsWidget
Creates a duplicate of this widget instance.

Specified by:
newInstance in interface I_CmsWidget
Overrides:
newInstance in class CmsSelectWidget
Returns:
a duplicate of this widget instance
See Also:
I_CmsWidget.newInstance()

parseSelectOptions

protected java.util.List<CmsSelectWidgetOption> parseSelectOptions(CmsObject cms,
                                                                   CmsMessages messages,
                                                                   I_CmsWidgetParameter param)
Returns the list of configured select options, parsing the configuration String if required.

The list elements are of type CmsSelectWidgetOption. The configuration String is parsed only once and then stored internally.

Parameters:
cms - the current users OpenCms context
messages - the messages of this dialog
param - the widget parameter of this dialog
Returns:
the list of select options
See Also:
CmsSelectWidgetOption

parseSelectOptions

protected java.util.List<CmsSelectWidgetOption> parseSelectOptions(CmsObject cms,
                                                                   I_CmsWidgetDialog widgetDialog,
                                                                   I_CmsWidgetParameter param)
Description copied from class: A_CmsSelectWidget
Returns the list of configured select options, parsing the configuration String if required.

The list elements are of type CmsSelectWidgetOption. The configuration String is parsed only once and then stored internally.

Overrides:
parseSelectOptions in class A_CmsSelectWidget
Parameters:
cms - the current users OpenCms context
widgetDialog - the dialog of this widget
param - the widget parameter of this dialog
Returns:
the list of select options
See Also:
A_CmsSelectWidget.parseSelectOptions(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)