-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WFCORE-6541] Patch high level command should be completely disabled …
…in standalone mode Jira issue: https://issues.redhat.com/browse/WFCORE-6541
- Loading branch information
Showing
11 changed files
with
150 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
* | ||
* @author [email protected] | ||
*/ | ||
@CommandDefinition(name = "apply", description = "") | ||
@CommandDefinition(name = "apply", description = "", activator = PatchCommand.PatchCommandActivator.class) | ||
public class PatchApply extends PatchOverrideCommand { | ||
|
||
// Argument comes first, aesh behavior. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
* | ||
* @author [email protected] | ||
*/ | ||
@CommandDefinition(name = "history", description = "") | ||
@CommandDefinition(name = "history", description = "", activator = PatchCommand.PatchCommandActivator.class) | ||
public class PatchHistory extends AbstractDistributionCommand { | ||
|
||
@Option(name = "patch-stream", hasValue = true, required = false) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
* | ||
* @author [email protected] | ||
*/ | ||
@CommandDefinition(name = "info", description = "") | ||
@CommandDefinition(name = "info", description = "", activator = PatchCommand.PatchCommandActivator.class) | ||
public class PatchInfo extends AbstractDistributionCommand { | ||
|
||
public static class NoStreamsActivator extends AbstractRejectOptionActivator { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
* | ||
* @author [email protected] | ||
*/ | ||
@CommandDefinition(name = "inspect", description = "") | ||
@CommandDefinition(name = "inspect", description = "", activator = PatchCommand.PatchCommandActivator.class) | ||
public class PatchInspect implements Command<CLICommandInvocation> { | ||
|
||
// Argument comes first, aesh behavior. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters