-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WFMP-231] Deprecate the API's removed and moved in 5.0.x.
https://issues.redhat.com/browse/WFMP-231 Signed-off-by: James R. Perkins <[email protected]>
- Loading branch information
Showing
20 changed files
with
58 additions
and
0 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 |
---|---|---|
|
@@ -29,7 +29,10 @@ | |
* needs to be consumed and redirected somewhere. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
public class ConsoleConsumer implements Runnable { | ||
private final InputStream in; | ||
private final OutputStream out; | ||
|
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 |
---|---|---|
|
@@ -23,7 +23,10 @@ | |
* Information about the running container. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "WeakerAccess", "unused" }) | ||
public interface ContainerDescription { | ||
|
||
|
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 |
---|---|---|
|
@@ -30,7 +30,10 @@ | |
* A default implementation for the {@link ContainerDescription}. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
class DefaultContainerDescription implements ContainerDescription { | ||
|
||
private final String productName; | ||
|
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 |
---|---|---|
|
@@ -47,7 +47,10 @@ | |
* The default deployment manager. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings("Duplicates") | ||
class DefaultDeploymentManager implements DeploymentManager { | ||
|
||
|
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 |
---|---|---|
|
@@ -39,7 +39,10 @@ | |
* </p> | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "unused", "WeakerAccess" }) | ||
public class Deployment implements DeploymentDescription, Comparable<Deployment> { | ||
|
||
|
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 |
---|---|---|
|
@@ -41,7 +41,10 @@ | |
* depending on the type of content being used. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
abstract class DeploymentContent { | ||
|
||
/** | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,10 @@ | |
* Represents a default description for a deployment. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings("WeakerAccess") | ||
public interface DeploymentDescription { | ||
|
||
|
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 |
---|---|---|
|
@@ -23,7 +23,10 @@ | |
* An exception that represents a deployment error. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "WeakerAccess", "unused" }) | ||
public class DeploymentException extends RuntimeException { | ||
|
||
|
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,10 @@ | |
* </p> | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings("unused") | ||
public interface DeploymentManager { | ||
|
||
|
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 |
---|---|---|
|
@@ -55,7 +55,10 @@ | |
* </p> | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "unused", "StaticMethodOnlyUsedInOneClass", "WeakerAccess" }) | ||
public class DeploymentOperations { | ||
static final String ENABLED = "enabled"; | ||
|
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,10 @@ | |
* Represents the results of a deployment. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings("unused") | ||
public class DeploymentResult { | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,10 @@ | |
* An error indicating an operation has failed to execute. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings("WeakerAccess") | ||
public class OperationExecutionException extends RuntimeException { | ||
private final ModelNode result; | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,10 @@ | |
/** | ||
* | ||
* @author [email protected] | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
public class PluginProgressTracker<T> implements ProgressCallback<T> { | ||
|
||
private static final String DELAYED_EXECUTION_MSG = "Delayed generation, waiting..."; | ||
|
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 |
---|---|---|
|
@@ -44,7 +44,10 @@ | |
|
||
/** | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "StaticMethodOnlyUsedInOneClass", "WeakerAccess", "unused", "MagicNumber" }) | ||
public class ServerHelper { | ||
private static final ModelNode EMPTY_ADDRESS = new ModelNode().setEmptyList(); | ||
|
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 |
---|---|---|
|
@@ -30,7 +30,10 @@ | |
* A simple deployment description. | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "WeakerAccess", "unused" }) | ||
public class SimpleDeploymentDescription implements DeploymentDescription, Comparable<SimpleDeploymentDescription> { | ||
|
||
|
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 |
---|---|---|
|
@@ -35,7 +35,10 @@ | |
* </p> | ||
* | ||
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
@SuppressWarnings({ "unused", "WeakerAccess" }) | ||
public class UndeployDescription implements DeploymentDescription, Comparable<UndeployDescription> { | ||
|
||
|
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 |
---|---|---|
|
@@ -22,7 +22,10 @@ | |
/** | ||
* | ||
* @author [email protected] | ||
* | ||
* @deprecated moved to new https://github.com/wildfly/wildfly-plugin-tools project | ||
*/ | ||
@Deprecated(forRemoval = true) | ||
public class Utils { | ||
|
||
public static boolean isValidHomeDirectory(final Path path) { | ||
|