File tree Expand file tree Collapse file tree 1 file changed +30
-33
lines changed
src/main/java/com/arangodb/entity Expand file tree Collapse file tree 1 file changed +30
-33
lines changed Original file line number Diff line number Diff line change 1616
1717package com .arangodb .entity ;
1818
19- import com .arangodb .util .CollectionUtils ;
20-
21- import java .util .Iterator ;
2219import java .util .List ;
2320
2421/**
3027 */
3128public class JobsEntity extends BaseEntity {
3229
33- /**
34- * The enumeration containing the job state
35- */
36- public static enum JobState {
37- DONE , PENDING ;
38- public java . lang . String getName () {
39- if ( this == DONE ) {
40- return "done" ;
41- }
42- if ( this == PENDING ) {
43- return "pending" ;
44- }
45- return null ;
46- }
47- }
48-
49- List < String > jobs ;
50-
51- public List < String > getJobs () {
52- return jobs ;
53- }
54-
55- public void setJobs ( List < String > jobs ) {
56- this . jobs = jobs ;
57- }
58-
59-
60- public JobsEntity (List <String > jobs ) {
61- this .jobs = jobs ;
62- }
30+ /**
31+ * The enumeration containing the job state
32+ */
33+ public static enum JobState {
34+ DONE ,
35+ PENDING ;
36+ public java . lang . String getName ( ) {
37+ if ( this == DONE ) {
38+ return "done" ;
39+ }
40+ if ( this == PENDING ) {
41+ return "pending" ;
42+ }
43+ return null ;
44+ }
45+ }
46+
47+ List < String > jobs ;
48+
49+ public List < String > getJobs () {
50+ return jobs ;
51+ }
52+
53+ public void setJobs ( List < String > jobs ) {
54+ this . jobs = jobs ;
55+ }
56+
57+ public JobsEntity (List <String > jobs ) {
58+ this .jobs = jobs ;
59+ }
6360}
You can’t perform that action at this time.
0 commit comments