Package org.wildfly.plugin.dev
Interface WatchHandler.Result
-
- Enclosing interface:
- WatchHandler
public static interface WatchHandler.Result
The result of handling the changed source file.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default boolean
requiresCopyResources()
Indicates whether the resources should be copied.default boolean
requiresRecompile()
Indicates whether a recompile is required.default boolean
requiresRedeploy()
Indicates whether the deployment should be redeployed is required.default boolean
requiresRepackage()
Indicates whether the deployment should be repackaged.
-
-
-
Method Detail
-
requiresRecompile
default boolean requiresRecompile()
Indicates whether a recompile is required.- Returns:
true
if a recompile is required
-
requiresRedeploy
default boolean requiresRedeploy()
Indicates whether the deployment should be redeployed is required.- Returns:
true
if the deployment should be redeployed is required
-
requiresCopyResources
default boolean requiresCopyResources()
Indicates whether the resources should be copied.- Returns:
true
if the resources should be copied
-
requiresRepackage
default boolean requiresRepackage()
Indicates whether the deployment should be repackaged.- Returns:
true
if the deployment should be repackaged
-
-