Package io.jmix.flowui.action.list
Class RemoveAction<E>
java.lang.Object
io.jmix.flowui.kit.action.AbstractAction
io.jmix.flowui.kit.action.BaseAction
io.jmix.flowui.action.SecuredBaseAction
io.jmix.flowui.action.list.ListDataComponentAction<A,E>
io.jmix.flowui.action.list.SecuredListDataComponentAction<RemoveAction<E>,E>
io.jmix.flowui.action.list.RemoveAction<E>
- All Implemented Interfaces:
AdjustWhenScreenReadOnly,ExecutableAction,SecuredAction,SecurityConstraintAction,TargetAction<ListDataComponent<E>>,Action
@ActionType("remove")
public class RemoveAction<E>
extends SecuredListDataComponentAction<RemoveAction<E>,E>
implements AdjustWhenScreenReadOnly
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Consumer<RemoveOperation.ActionCancelledEvent<E>>protected Consumer<RemoveOperation.AfterActionPerformedEvent<E>>protected booleanprotected Stringprotected Stringstatic final Stringprotected RemoveOperationFields inherited from class io.jmix.flowui.action.list.SecuredListDataComponentAction
accessManager, applicationContext, constraintEntityOp, metadataFields inherited from class io.jmix.flowui.action.list.ListDataComponentAction
selectionListenerRegistration, targetFields inherited from class io.jmix.flowui.action.SecuredBaseAction
enabledByUiPermissions, visibleByUiPermissionsFields inherited from class io.jmix.flowui.kit.action.BaseAction
enabledExplicitly, visibleExplicitlyFields inherited from class io.jmix.flowui.kit.action.AbstractAction
description, enabled, eventBus, icon, id, shortcutCombination, text, variant, visibleFields inherited from interface io.jmix.flowui.kit.action.Action
PROP_DESCRIPTION, PROP_ENABLED, PROP_ICON, PROP_SHORTCUT, PROP_TEXT, PROP_VARIANT, PROP_VISIBLE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanvoidexecute()Executes the action.Returns confirmation dialog header if it was set bysetConfirmationHeader(String)or in the screen XML.Returns confirmation dialog text if it was set bysetConfirmationText(String)or in the screen XML.protected voidbooleanprotected booleanvoidsetActionCancelledHandler(Consumer<RemoveOperation.ActionCancelledEvent<E>> actionCancelledHandler) Sets the handler to be invoked if the action was cancelled by the user.voidsetAfterActionPerformedHandler(Consumer<RemoveOperation.AfterActionPerformedEvent<E>> afterActionPerformedHandler) Sets the handler to be invoked after removing entities.voidsetConfirmation(boolean confirmation) Sets whether to ask confirmation from the user.voidsetConfirmationHeader(String confirmationHeader) Sets confirmation dialog header.voidsetConfirmationText(String confirmationText) Sets confirmation dialog text.protected voidsetFlowUiComponentProperties(FlowUiComponentProperties flowUiComponentProperties) protected voidsetMessages(Messages messages) voidsetRemoveOperation(RemoveOperation removeOperation) withAfterActionCancelledHandler(Consumer<RemoveOperation.ActionCancelledEvent<E>> actionCancelledHandler) withAfterActionPerformedHandler(Consumer<RemoveOperation.AfterActionPerformedEvent<E>> afterActionPerformedHandler) withConfirmation(boolean confirmation) withConfirmationHeader(String confirmationHeader) withConfirmationText(String confirmationText) Methods inherited from class io.jmix.flowui.action.list.SecuredListDataComponentAction
getConstraintEntityOp, isApplicable, setAccessManager, setApplicationContext, setConstraintEntityOp, setMetadata, withConstraintEntityOpMethods inherited from class io.jmix.flowui.action.list.ListDataComponentAction
actionPerform, attachSelectionListener, checkTarget, getTarget, onSelectionChange, setTarget, withEnabled, withEnabledByUiPermissions, withHandler, withIcon, withIcon, withShortcutCombination, withTarget, withText, withTitle, withVariant, withVisible, withVisibleByUiPermissionsMethods inherited from class io.jmix.flowui.action.SecuredBaseAction
isEnabledByUiPermissions, isVisibleByUiPermissions, refreshState, setEnabledByUiPermissions, setVisibleByUiPermissionsMethods inherited from class io.jmix.flowui.kit.action.BaseAction
addActionPerformedListener, setEnabled, setEnabledInternal, setVisible, setVisibleInternalMethods inherited from class io.jmix.flowui.kit.action.AbstractAction
addPropertyChangeListener, firePropertyChange, getDescription, getEventBus, getIcon, getId, getShortcutCombination, getText, getVariant, hasListener, isEnabled, isVisible, setDescription, setIcon, setShortcutCombination, setText, setVariantMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.jmix.flowui.kit.action.Action
actionPerform, addPropertyChangeListener, getDescription, getIcon, getId, getShortcutCombination, getText, getVariant, isEnabled, isVisible, refreshState, setDescription, setEnabled, setIcon, setShortcutCombination, setText, setVariant, setVisibleMethods inherited from interface io.jmix.flowui.action.AdjustWhenScreenReadOnly
isDisabledWhenScreenReadOnly
-
Field Details
-
ID
- See Also:
-
removeOperation
-
confirmation
protected boolean confirmation -
confirmationText
-
confirmationHeader
-
afterActionPerformedHandler
-
actionCancelledHandler
-
-
Constructor Details
-
RemoveAction
public RemoveAction() -
RemoveAction
-
-
Method Details
-
initAction
protected void initAction()- Overrides:
initActionin classListDataComponentAction<RemoveAction<E>,E>
-
setMessages
-
setRemoveOperation
-
setFlowUiComponentProperties
@Autowired protected void setFlowUiComponentProperties(FlowUiComponentProperties flowUiComponentProperties) -
isConfirmation
public boolean isConfirmation()- Returns:
- whether to ask confirmation from the user
-
setConfirmation
public void setConfirmation(boolean confirmation) Sets whether to ask confirmation from the user. -
getConfirmationText
Returns confirmation dialog text if it was set bysetConfirmationText(String)or in the screen XML. Otherwise, returns null. -
setConfirmationText
Sets confirmation dialog text. -
getConfirmationHeader
Returns confirmation dialog header if it was set bysetConfirmationHeader(String)or in the screen XML. Otherwise, returns null. -
setConfirmationHeader
Sets confirmation dialog header. -
setAfterActionPerformedHandler
public void setAfterActionPerformedHandler(@Nullable Consumer<RemoveOperation.AfterActionPerformedEvent<E>> afterActionPerformedHandler) Sets the handler to be invoked after removing entities. -
setActionCancelledHandler
public void setActionCancelledHandler(@Nullable Consumer<RemoveOperation.ActionCancelledEvent<E>> actionCancelledHandler) Sets the handler to be invoked if the action was cancelled by the user. -
isPermitted
protected boolean isPermitted()- Overrides:
isPermittedin classSecuredListDataComponentAction<RemoveAction<E>,E>
-
checkRemovePermission
protected boolean checkRemovePermission() -
execute
public void execute()Executes the action.- Specified by:
executein interfaceExecutableAction
-
withConfirmation
-
withConfirmationText
-
withConfirmationHeader
-
withAfterActionPerformedHandler
public RemoveAction<E> withAfterActionPerformedHandler(@Nullable Consumer<RemoveOperation.AfterActionPerformedEvent<E>> afterActionPerformedHandler) -
withAfterActionCancelledHandler
public RemoveAction<E> withAfterActionCancelledHandler(@Nullable Consumer<RemoveOperation.ActionCancelledEvent<E>> actionCancelledHandler)
-