Package de.xima.fc.gui.bean
Class DefaultSettingsController
- java.lang.Object
-
- de.xima.fc.gui.bean.DefaultSettingsController
-
- All Implemented Interfaces:
Serializable
@RequestScoped @Named public class DefaultSettingsController extends Object implements Serializable
Contains the default implementation for theaddNewListener
anddeleteListener
required by thesettings.xhtml
custom component.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultSettingsController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAddNewSettingNameEditableOptional(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component.void
onAddNewSettingNameEditableRequired(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component.void
onAddNewSettingNameFixedOptional(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component.void
onAddNewSettingNameFixedRequired(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component.void
onDeleteSetting(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component.
-
-
-
Method Detail
-
onAddNewSettingNameEditableOptional
public void onAddNewSettingNameEditableOptional(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component. Adds a setting where the name is editable and the value is not required.- Parameters:
event
- Event triggered by theUICommand
.
-
onAddNewSettingNameEditableRequired
public void onAddNewSettingNameEditableRequired(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component. Adds a setting where the name is editable and the value is required.- Parameters:
event
- Event triggered by theUICommand
.
-
onAddNewSettingNameFixedOptional
public void onAddNewSettingNameFixedOptional(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component. Adds a setting where the name is not editable and the value is not required.- Parameters:
event
- Event triggered by theUICommand
.
-
onAddNewSettingNameFixedRequired
public void onAddNewSettingNameFixedRequired(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component. Adds a setting where the name is not editable and the value is required.- Parameters:
event
- Event triggered by theUICommand
.
-
onDeleteSetting
public final void onDeleteSetting(javax.faces.event.ActionEvent event)
Listener for when a setting is deleted from to thesettings.xhtml
custom component.- Parameters:
event
- Event triggered by theUICommand
.
-
-