Uses of Interface
com.broadleafcommerce.metadata.dsl.core.Action
Packages that use Action
Package
Description
-
Uses of Action in com.broadleafcommerce.metadata.dsl.core
Classes in com.broadleafcommerce.metadata.dsl.core with type parameters of type ActionModifier and TypeInterfaceDescriptioninterface
Represents the metadata for an action.Methods in com.broadleafcommerce.metadata.dsl.core with type parameters of type ActionModifier and TypeMethodDescriptiondefault <T extends Action<T>>
TReturns the action at the provided key with the given type.Methods in com.broadleafcommerce.metadata.dsl.core that return ActionMethods in com.broadleafcommerce.metadata.dsl.core that return types with arguments of type ActionModifier and TypeMethodDescriptionComponent.findAction
(String key) Finds the action at the given key.Component.findAction
(Predicate<Action<?>> predicate) Retrieves a single action matching the given predicate.Component.findActions
(Predicate<Action<?>> predicate) Retrieves a list of actions matching the given predicate.AbstractComponent.getActions()
Component.getActions()
A key-value map of actions used for managing the actions of this component.default Collection<Action<?>>
Component.getActionsList()
The serializable, sorted list of actions.Methods in com.broadleafcommerce.metadata.dsl.core with parameters of type ActionModifier and TypeMethodDescriptiondefault C
Adds an action using the action's ID as the key.default C
Adds an action at the given key.Method parameters in com.broadleafcommerce.metadata.dsl.core with type arguments of type ActionModifier and TypeMethodDescriptionComponent.findAction
(Predicate<Action<?>> predicate) Retrieves a single action matching the given predicate.Component.findActions
(Predicate<Action<?>> predicate) Retrieves a list of actions matching the given predicate.void
AbstractComponent.setActions
(Map<String, Action<?>> actions) void
Component.setActions
(Map<String, Action<?>> actions) -
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension
Methods in com.broadleafcommerce.metadata.dsl.core.extension that return ActionModifier and TypeMethodDescriptiondefault Action<?>
ResourceGrid.getDeleteAction()
default Action<?>
ActionGrid.getGridAction
(String type) default Action<?>
ActionGrid.getRowAction
(String type) Methods in com.broadleafcommerce.metadata.dsl.core.extension that return types with arguments of type ActionModifier and TypeMethodDescriptionResourceGrid.findDeleteAction()
ActionGrid.findGridAction
(String type) ActionGrid.findRowAction
(String type) Methods in com.broadleafcommerce.metadata.dsl.core.extension with parameters of type ActionModifier and TypeMethodDescriptiondefault 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) Method parameters in com.broadleafcommerce.metadata.dsl.core.extension with type arguments of type ActionModifier and TypeMethodDescriptiondefault G
ResourceGrid.deleteAction
(UnaryOperator<Action<?>> fn) default G
ActionGrid.gridAction
(String type, UnaryOperator<Action<?>> fn) default G
ActionGrid.rowAction
(String type, UnaryOperator<Action<?>> fn) -
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension.actions
Subinterfaces of Action in com.broadleafcommerce.metadata.dsl.core.extension.actionsModifier and TypeInterfaceDescriptioninterface
CloneModalFormAction<A extends CloneModalFormAction<A>>
Extension ofModalFormAction
that is used for the cloning of new entities.interface
CreateModalFormAction<A extends CreateModalFormAction<A>>
Extension ofModalFormAction
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 variousFormComponent
.interface
GenerateTemplateAction<A extends GenerateTemplateAction<A>>
interface
GridRowConditionalAction<A extends GridRowConditionalAction<A>>
TheActionGrid.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 anOrderable
grid.interface
ResidentMapCreateAction<A extends ResidentMapCreateAction<A>>
Represents the metadata for theResidentMapField.ActionTypes.CREATE
action within anResidentMapField
.interface
RowModalFormAction<A extends RowModalFormAction<A>>
A genericModalFormAction
for row-level actions within a grid.interface
TriggerAction<A extends TriggerAction<A>>
Classes in com.broadleafcommerce.metadata.dsl.core.extension.actions that implement ActionModifier and TypeClassDescriptionclass
AbstractAction<A extends AbstractAction<A>>
An abstract implementation ofAction
.class
class
class
class
The default implementation forExportGridAction
.class
class
class
The default implementation forGridRowConditionalAction
.class
The default implementation forImportGridAction
.class
class
class
class
class
class
Constructors in com.broadleafcommerce.metadata.dsl.core.extension.actions with parameters of type Action -
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension.actions.filters
Subinterfaces of Action in com.broadleafcommerce.metadata.dsl.core.extension.actions.filtersModifier and TypeInterfaceDescriptioninterface
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.Classes in com.broadleafcommerce.metadata.dsl.core.extension.actions.filters that implement ActionModifier and TypeClassDescriptionclass
class
class
-
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension.common.tree
Methods in com.broadleafcommerce.metadata.dsl.core.extension.common.tree that return ActionModifier and TypeMethodDescriptiondefault Action<?>
Tree.getGlobalAction
(String type) Finds the global action matching the giventype
.default Action<?>
TreeGridView.getOpenDetailsAction()
default Action<?>
TreeGridView.getQueryBuilderFilterAction()
default Action<?>
TreeGridView.getQueryFilterAction()
default Action<?>
Tree.getSecondaryAction
(String type) Finds the secondary action matching the giventype
.Methods in com.broadleafcommerce.metadata.dsl.core.extension.common.tree that return types with arguments of type ActionModifier and TypeMethodDescriptionTree.findGlobalAction
(String type) TreeGridView.findOpenDetailsAction()
TreeGridView.findQueryBuilderFilterAction()
TreeGridView.findQueryFilterAction()
Tree.findSecondaryAction
(String type) Same asTree.getSecondaryAction(String)
except that his returns the action wrapped in anOptional
so that the action need not be present.Methods in com.broadleafcommerce.metadata.dsl.core.extension.common.tree with parameters of type ActionModifier and TypeMethodDescriptiondefault 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 asTree.addGlobalAction(Action)
default T
Tree.globalAction
(String type, Action<?> action) default T
Tree.secondaryAction
(Action<?> action) Same asTree.addSecondaryAction(Action)
default T
Tree.secondaryAction
(String type, Action<?> action) Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.common.tree with type arguments of type ActionModifier and TypeMethodDescriptiondefault V
TreeGridView.openDetailsAction
(UnaryOperator<Action<?>> fn) default V
TreeGridView.queryBuilderFilterAction
(UnaryOperator<Action<?>> fn) default V
TreeGridView.queryFilterAction
(UnaryOperator<Action<?>> fn) -
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension.fields
Methods in com.broadleafcommerce.metadata.dsl.core.extension.fields that return ActionModifier and TypeMethodDescriptionstatic Action<?>
ResidentMapField.ActionDefaults.getDelete()
default Action<?>
ResidentGridField.getDeleteAction()
Retrieves the grid action of typeResidentGridField.ActionTypes.DELETE
.default Action<?>
ResidentMapField.getDeleteAction()
Retrieves theResidentMapField.ActionTypes.DELETE
action.default Action<?>
ResidentMapField.getEntryAction
(String type) Retrieves theResidentMapField.ActionPlacements.ENTRY
action with the provided type.default Action<?>
ResidentMapField.getMapAction
(String type) Retrieves theResidentMapField.ActionPlacements.MAP
action with the provided type.Methods in com.broadleafcommerce.metadata.dsl.core.extension.fields that return types with arguments of type ActionModifier and TypeMethodDescriptionResidentGridField.findDeleteAction()
Finds the grid action of typeResidentGridField.ActionTypes.DELETE
.ResidentMapField.findDeleteAction()
Finds theResidentMapField.ActionTypes.DELETE
action.ResidentMapField.findEntryAction
(String type) Finds theResidentMapField.ActionPlacements.ENTRY
action with the provided type.ResidentMapField.findMapAction
(String type) Finds theResidentMapField.ActionPlacements.MAP
action with the provided type.Methods in com.broadleafcommerce.metadata.dsl.core.extension.fields with parameters of type ActionModifier and TypeMethodDescriptiondefault F
ResidentGridField.addDeleteAction
(Action<?> deleteAction) Add theResidentGridField.ActionTypes.DELETE
action to the grid.default F
ResidentMapField.addDeleteAction
(Action<?> deleteAction) Adds theResidentMapField.ActionTypes.DELETE
action.default F
ResidentMapField.addEntryAction
(String type, Action<?> action) Adds anResidentMapField.ActionPlacements.ENTRY
action.default F
ResidentMapField.addMapAction
(String type, Action<?> action) Adds anResidentMapField.ActionPlacements.MAP
action.Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.fields with type arguments of type ActionModifier and TypeMethodDescriptiondefault F
ResidentGridField.deleteAction
(UnaryOperator<Action<?>> fn) Configures theResidentGridField.ActionTypes.DELETE
action for the grid.default F
ResidentMapField.deleteAction
(UnaryOperator<Action<?>> fn) Selects theResidentMapField.ActionTypes.DELETE
action for functional customization. -
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension.views
Methods in com.broadleafcommerce.metadata.dsl.core.extension.views that return ActionModifier and TypeMethodDescriptiondefault Action<?>
ActionView.getPrimaryAction
(String type) default Action<?>
ActionView.getSecondaryAction
(String type) Methods in com.broadleafcommerce.metadata.dsl.core.extension.views that return types with arguments of type ActionModifier and TypeMethodDescriptionActionView.findPrimaryAction
(String type) ActionView.findSecondaryAction
(String type) Methods in com.broadleafcommerce.metadata.dsl.core.extension.views with parameters of type ActionModifier and TypeMethodDescriptiondefault 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) -
Uses of Action in com.broadleafcommerce.metadata.dsl.core.extension.views.details
Methods in com.broadleafcommerce.metadata.dsl.core.extension.views.details that return ActionModifier and TypeMethodDescriptiondefault Action<?>
UpdateEntityView.getDeleteAction()
default Action<?>
CreateEntityView.getSubmitAction()
default Action<?>
UpdateEntityView.getSubmitAction()
Methods in com.broadleafcommerce.metadata.dsl.core.extension.views.details that return types with arguments of type ActionModifier and TypeMethodDescriptionUpdateEntityView.findDeleteAction()
CreateEntityView.findSubmitAction()
UpdateEntityView.findSubmitAction()
Methods in com.broadleafcommerce.metadata.dsl.core.extension.views.details with parameters of type ActionModifier and TypeMethodDescriptiondefault V
UpdateEntityView.addDeleteAction
(Action<?> action) default V
CreateEntityView.addSubmitAction
(Action<?> action) default V
UpdateEntityView.addSubmitAction
(Action<?> action) default V
UpdateEntityView.deleteAction
(Action<?> action) default V
CreateEntityView.submitAction
(Action<?> action) default V
UpdateEntityView.submitAction
(Action<?> action) Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.views.details with type arguments of type ActionModifier and TypeMethodDescriptiondefault V
UpdateEntityView.deleteAction
(UnaryOperator<Action<?>> fn) default V
CreateEntityView.submitAction
(UnaryOperator<Action<?>> fn) default V
UpdateEntityView.submitAction
(UnaryOperator<Action<?>> fn) -
Uses of Action in com.broadleafcommerce.metadata.dsl.validators
Methods in com.broadleafcommerce.metadata.dsl.validators with parameters of type ActionModifier and TypeMethodDescriptiondefault void
ComponentValidatorManager.validateAction
(Action<?> target, org.springframework.validation.Errors errors) Method used to validateAction
objects. -
Uses of Action in com.broadleafcommerce.metadata.dsl.validators.actions
Methods in com.broadleafcommerce.metadata.dsl.validators.actions with parameters of type ActionModifier and TypeMethodDescriptionvoid
ActionValidator.validate
(Action<?> target, org.springframework.validation.Errors errors, ComponentValidatorManager manager) void
DefaultActionValidator.validate
(Action<?> target, org.springframework.validation.Errors errors, ComponentValidatorManager manager) void
DefaultExportActionValidator.validate
(Action<?> target, org.springframework.validation.Errors errors, ComponentValidatorManager manager) void
DefaultFilterActionValidator.validate
(Action<?> target, org.springframework.validation.Errors errors, ComponentValidatorManager manager) void
DefaultFormActionValidator.validate
(Action<?> target, org.springframework.validation.Errors errors, ComponentValidatorManager manager) void
DefaultOrderableModalFormActionValidator.validate
(Action<?> target, org.springframework.validation.Errors errors, ComponentValidatorManager manager)