Modifier and Type | Interface and Description |
---|---|
interface |
Action<A extends Action<A>>
Represents the metadata for an action.
|
Modifier and Type | Method and Description |
---|---|
default <T extends Action<T>> |
Component.getAction(String key,
Class<T> clazz)
Returns the action at the provided key with the given type.
|
Modifier and Type | Method and Description |
---|---|
default Action<?> |
Component.getAction(String key)
Returns the action at the provided key.
|
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
Component.findAction(Predicate<Action<?>> predicate)
Retrieves a single action matching the given predicate.
|
default Optional<Action<?>> |
Component.findAction(String key)
Finds the action at the given key.
|
default List<Action<?>> |
Component.findActions(Predicate<Action<?>> predicate)
Retrieves a list of actions matching the given predicate.
|
Map<String,Action<?>> |
Component.getActions()
A key-value map of actions used for managing the actions of this component.
|
Map<String,Action<?>> |
AbstractComponent.getActions() |
default Collection<Action<?>> |
Component.getActionsList()
The serializable, sorted list of actions.
|
Modifier and Type | Method and Description |
---|---|
default C |
Component.addAction(Action<?> action)
Adds an action using the action's ID as the key.
|
default C |
Component.addAction(String key,
Action<?> action)
Adds an action at the given key.
|
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
Component.findAction(Predicate<Action<?>> predicate)
Retrieves a single action matching the given predicate.
|
default List<Action<?>> |
Component.findActions(Predicate<Action<?>> predicate)
Retrieves a list of actions matching the given predicate.
|
void |
Component.setActions(Map<String,Action<?>> actions) |
void |
AbstractComponent.setActions(Map<String,Action<?>> actions) |
Modifier and Type | Method and Description |
---|---|
default Action<?> |
ResourceGrid.getDeleteAction() |
default Action<?> |
ActionGrid.getGridAction(String type) |
default Action<?> |
ActionGrid.getRowAction(String type) |
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
ResourceGrid.findDeleteAction() |
default Optional<Action<?>> |
ActionGrid.findGridAction(String type) |
default Optional<Action<?>> |
ActionGrid.findRowAction(String type) |
Modifier and Type | Method and Description |
---|---|
default G |
ResourceGrid.addDeleteAction(Action<?> deleteAction) |
default G |
ActionGrid.addGridAction(Action<?> action) |
default G |
ActionGrid.addGridAction(String type,
Action<?> action) |
default G |
ActionGrid.addRowAction(Action<?> action) |
default G |
ActionGrid.addRowAction(String type,
Action<?> action) |
Modifier and Type | Method and Description |
---|---|
default G |
ResourceGrid.deleteAction(UnaryOperator<Action<?>> fn) |
default G |
ActionGrid.gridAction(String type,
UnaryOperator<Action<?>> fn) |
default G |
ActionGrid.rowAction(String type,
UnaryOperator<Action<?>> fn) |
Modifier and Type | Interface and Description |
---|---|
interface |
CloneModalFormAction<A extends CloneModalFormAction<A>>
Extension of
ModalFormAction that is used for the cloning of new entities. |
interface |
CreateModalFormAction<A extends CreateModalFormAction<A>>
Extension of
ModalFormAction that is used for the creation of new entities. |
interface |
ExportGridAction<A extends ExportGridAction<A>>
This action is used to open the modal dialog with additional configuration to export the entities
from the grid.
|
interface |
FormAction<A extends FormAction<A>>
Represents the metadata for a action whose children are various
FormComponent . |
interface |
GenerateTemplateAction<A extends GenerateTemplateAction<A>> |
interface |
GridRowConditionalAction<A extends GridRowConditionalAction<A>>
The
ActionGrid.ActionPlacements#ROW action that can be rendered based on specified
conditions. |
interface |
ImportGridAction<A extends ImportGridAction<A>>
This action is used to open the modal dialog with additional configuration to import the entities
from the grid.
|
interface |
LinkAction<A extends LinkAction<A>> |
interface |
ModalFormAction<A extends ModalFormAction<A>>
Represents the metadata for a modal form action.
|
interface |
OrderableModalFormAction<A extends OrderableModalFormAction<A>>
Represents the metadata for the action used to re-order rows within an
Orderable grid. |
interface |
ResidentMapCreateAction<A extends ResidentMapCreateAction<A>>
Represents the metadata for the
ResidentMapField.ActionTypes#CREATE action within an
ResidentMapField . |
interface |
RowModalFormAction<A extends RowModalFormAction<A>>
A generic
ModalFormAction for row-level actions within a grid. |
interface |
TriggerAction<A extends TriggerAction<A>> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractAction<A extends AbstractAction<A>>
An abstract implementation of
Action . |
class |
DefaultAction |
class |
DefaultCloneModalFormAction |
class |
DefaultCreateModalFormAction |
class |
DefaultExportGridAction
The default implementation for
ExportGridAction . |
class |
DefaultFormAction |
class |
DefaultGenerateTemplateAction |
class |
DefaultGridRowConditionalAction
The default implementation for
GridRowConditionalAction . |
class |
DefaultImportGridAction
The default implementation for
ImportGridAction . |
class |
DefaultLinkAction |
class |
DefaultModalFormAction |
class |
DefaultOrderableModalFormAction |
class |
DefaultResidentMapCreateAction |
class |
DefaultRowModalFormAction |
class |
DefaultTriggerAction |
Constructor and Description |
---|
AbstractAction(Action<?> action) |
DefaultAction(Action<?> action) |
Modifier and Type | Interface and Description |
---|---|
interface |
FilterAction<A extends FilterAction<A>>
Represents the metadata for a filter action.
|
interface |
LookupFilterAction<A extends LookupFilterAction<A>> |
interface |
QueryBuilderFilterAction<A extends QueryBuilderFilterAction<A>>
Represents the metadata for a query builder filter action.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultFilterAction |
class |
DefaultLookupFilterAction |
class |
DefaultQueryBuilderFilterAction |
Modifier and Type | Method and Description |
---|---|
default Action<?> |
Tree.getGlobalAction(String type)
Finds the global action matching the given
type . |
default Action<?> |
TreeGridView.getOpenDetailsAction() |
default Action<?> |
TreeGridView.getQueryBuilderFilterAction() |
default Action<?> |
TreeGridView.getQueryFilterAction() |
default Action<?> |
Tree.getSecondaryAction(String type)
Finds the secondary action matching the given
type . |
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
Tree.findGlobalAction(String type) |
default Optional<Action<?>> |
TreeGridView.findOpenDetailsAction() |
default Optional<Action<?>> |
TreeGridView.findQueryBuilderFilterAction() |
default Optional<Action<?>> |
TreeGridView.findQueryFilterAction() |
default Optional<Action<?>> |
Tree.findSecondaryAction(String type)
Same as
Tree.getSecondaryAction(String) except that his returns the action wrapped in an
Optional so that the action need not be present. |
Modifier and Type | Method and Description |
---|---|
default T |
Tree.addGlobalAction(Action<?> action)
|
default T |
Tree.addGlobalAction(String type,
Action<?> action)
|
default V |
TreeGridView.addOpenDetailsAction(Action<?> action) |
default V |
TreeGridView.addQueryBuilderFilterAction(Action<?> action) |
default V |
TreeGridView.addQueryFilterAction(Action<?> action) |
default T |
Tree.addSecondaryAction(Action<?> action)
|
default T |
Tree.addSecondaryAction(String type,
Action<?> action)
|
default T |
Tree.globalAction(Action<?> action)
Same as
Tree.addGlobalAction(Action) |
default T |
Tree.globalAction(String type,
Action<?> action)
|
default T |
Tree.secondaryAction(Action<?> action)
Same as
Tree.addSecondaryAction(Action) |
default T |
Tree.secondaryAction(String type,
Action<?> action)
|
Modifier and Type | Method and Description |
---|---|
default V |
TreeGridView.openDetailsAction(UnaryOperator<Action<?>> fn) |
default V |
TreeGridView.queryBuilderFilterAction(UnaryOperator<Action<?>> fn) |
default V |
TreeGridView.queryFilterAction(UnaryOperator<Action<?>> fn) |
Modifier and Type | Method and Description |
---|---|
static Action<?> |
ResidentMapField.ActionDefaults.getDelete() |
default Action<?> |
ResidentMapField.getDeleteAction()
Retrieves the
ResidentMapField.ActionTypes.DELETE action. |
default Action<?> |
ResidentGridField.getDeleteAction()
Retrieves the grid action of type
ResidentGridField.ActionTypes.DELETE . |
default Action<?> |
ResidentMapField.getEntryAction(String type)
Retrieves the
ResidentMapField.ActionPlacements.ENTRY action with the provided type. |
default Action<?> |
ResidentMapField.getMapAction(String type)
Retrieves the
ResidentMapField.ActionPlacements.MAP action with the provided type. |
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
ResidentMapField.findDeleteAction()
Finds the
ResidentMapField.ActionTypes.DELETE action. |
default Optional<Action<?>> |
ResidentGridField.findDeleteAction()
Finds the grid action of type
ResidentGridField.ActionTypes.DELETE . |
default Optional<Action<?>> |
ResidentMapField.findEntryAction(String type)
Finds the
ResidentMapField.ActionPlacements.ENTRY action with the provided type. |
default Optional<Action<?>> |
ResidentMapField.findMapAction(String type)
Finds the
ResidentMapField.ActionPlacements.MAP action with the provided type. |
Modifier and Type | Method and Description |
---|---|
default F |
ResidentMapField.addDeleteAction(Action<?> deleteAction)
Adds the
ResidentMapField.ActionTypes.DELETE action. |
default F |
ResidentGridField.addDeleteAction(Action<?> deleteAction)
Add the
ResidentGridField.ActionTypes.DELETE action to the grid. |
default F |
ResidentMapField.addEntryAction(String type,
Action<?> action)
Adds an
ResidentMapField.ActionPlacements.ENTRY action. |
default F |
ResidentMapField.addMapAction(String type,
Action<?> action)
Adds an
ResidentMapField.ActionPlacements.MAP action. |
Modifier and Type | Method and Description |
---|---|
default F |
ResidentMapField.deleteAction(UnaryOperator<Action<?>> fn)
Selects the
ResidentMapField.ActionTypes.DELETE action for functional customization. |
default F |
ResidentGridField.deleteAction(UnaryOperator<Action<?>> fn)
Configures the
ResidentGridField.ActionTypes.DELETE action for the grid. |
Modifier and Type | Method and Description |
---|---|
default Action<?> |
ActionView.getPrimaryAction(String type) |
default Action<?> |
ActionView.getSecondaryAction(String type) |
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
ActionView.findPrimaryAction(String type) |
default Optional<Action<?>> |
ActionView.findSecondaryAction(String type) |
Modifier and Type | Method and Description |
---|---|
default V |
ActionView.addPrimaryAction(Action<?> action) |
default V |
ActionView.addPrimaryAction(String type,
Action<?> action) |
default V |
ActionView.addSecondaryAction(Action<?> action) |
default V |
ActionView.addSecondaryAction(String type,
Action<?> action) |
default V |
ActionView.primaryAction(Action<?> action) |
default V |
ActionView.primaryAction(String type,
Action<?> action) |
default V |
ActionView.secondaryAction(Action<?> action) |
default V |
ActionView.secondaryAction(String type,
Action<?> action) |
Modifier and Type | Method and Description |
---|---|
default Action<?> |
UpdateEntityView.getDeleteAction() |
default Action<?> |
UpdateEntityView.getSubmitAction() |
default Action<?> |
CreateEntityView.getSubmitAction() |
Modifier and Type | Method and Description |
---|---|
default Optional<Action<?>> |
UpdateEntityView.findDeleteAction() |
default Optional<Action<?>> |
UpdateEntityView.findSubmitAction() |
default Optional<Action<?>> |
CreateEntityView.findSubmitAction() |
Modifier and Type | Method and Description |
---|---|
default V |
UpdateEntityView.addDeleteAction(Action<?> action) |
default V |
UpdateEntityView.addSubmitAction(Action<?> action) |
default V |
CreateEntityView.addSubmitAction(Action<?> action) |
default V |
UpdateEntityView.deleteAction(Action<?> action) |
default V |
UpdateEntityView.submitAction(Action<?> action) |
default V |
CreateEntityView.submitAction(Action<?> action) |
Modifier and Type | Method and Description |
---|---|
default V |
UpdateEntityView.deleteAction(UnaryOperator<Action<?>> fn) |
default V |
UpdateEntityView.submitAction(UnaryOperator<Action<?>> fn) |
default V |
CreateEntityView.submitAction(UnaryOperator<Action<?>> fn) |
Modifier and Type | Method and Description |
---|---|
default void |
ComponentValidatorManager.validateAction(Action<?> target,
org.springframework.validation.Errors errors)
Method used to validate
Action objects. |
Modifier and Type | Method and Description |
---|---|
void |
DefaultFormActionValidator.validate(Action<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
void |
DefaultOrderableModalFormActionValidator.validate(Action<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
void |
DefaultExportActionValidator.validate(Action<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
void |
ActionValidator.validate(Action<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
void |
DefaultActionValidator.validate(Action<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
void |
DefaultFilterActionValidator.validate(Action<?> target,
org.springframework.validation.Errors errors,
ComponentValidatorManager manager) |
Copyright © 2021. All rights reserved.