Commit c83cbad2 authored by Greg Messner's avatar Greg Messner
Browse files

Deprecated the SPECIFIC and SHARED RunnerStatus values (#373).

parent 35e83d8e
......@@ -21,7 +21,17 @@ public class Runner {
* Enum to use for RunnersApi filtering on status.
*/
public enum RunnerStatus {
SPECIFIC, SHARED, ACTIVE, ONLINE, PAUSED, OFFLINE;
/** @deprecated This RunnerStatus value is deprecated and will be removed in a future release. */
@Deprecated
SPECIFIC,
/** @deprecated This RunnerStatus value is deprecated and will be removed in a future release. */
@Deprecated
SHARED,
ACTIVE, ONLINE, PAUSED, OFFLINE;
private static JacksonJsonEnumHelper<RunnerStatus> enumHelper =
new JacksonJsonEnumHelper<>(RunnerStatus.class);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment