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
Modifier and TypeMethodDescriptiondefault boolean
Indicates whether the resources should be copied.default boolean
Indicates whether a recompile is required.default boolean
Indicates whether the deployment should be redeployed is required.default boolean
Indicates whether the deployment should be repackaged.
-
Method Details
-
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
-