Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
f5a54d5a
Commit
f5a54d5a
authored
Feb 03, 2018
by
Matthias Huttar
Committed by
Greg Messner
Feb 03, 2018
Browse files
Adds missing "MANUAL" job status (#135)
parent
ebc2eb04
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/JobStatus.java
View file @
f5a54d5a
...
@@ -33,7 +33,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
...
@@ -33,7 +33,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
*/
*/
public
enum
JobStatus
{
public
enum
JobStatus
{
RUNNING
,
PENDING
,
SUCCESS
,
FAILED
,
CANCELED
,
SKIPPED
;
RUNNING
,
PENDING
,
SUCCESS
,
FAILED
,
CANCELED
,
SKIPPED
,
MANUAL
;
private
static
JacksonJsonEnumHelper
<
JobStatus
>
enumHelper
=
new
JacksonJsonEnumHelper
<>(
JobStatus
.
class
);
private
static
JacksonJsonEnumHelper
<
JobStatus
>
enumHelper
=
new
JacksonJsonEnumHelper
<>(
JobStatus
.
class
);
...
@@ -51,4 +51,4 @@ public enum JobStatus {
...
@@ -51,4 +51,4 @@ public enum JobStatus {
public
String
toString
()
{
public
String
toString
()
{
return
(
enumHelper
.
toString
(
this
));
return
(
enumHelper
.
toString
(
this
));
}
}
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment