@@ -45,6 +45,9 @@ public class MasterObjectList {
4545 @ JsonProperty ("StartDate" )
4646 private String startDate ;
4747
48+ @ JsonProperty ("ChunkClientProcessingOrderGuarantee" )
49+ private ChunkClientProcessingOrderGuarantee chunkClientProcessingOrderGuarantee ;
50+
4851 public MasterObjectList () {}
4952
5053 public List <Objects > getObjects () {
@@ -61,6 +64,54 @@ public void setJobId(final UUID jobId) {
6164 this .jobId = jobId ;
6265 }
6366
67+ public ChunkClientProcessingOrderGuarantee getChunkClientProcessingOrderGuarantee () {
68+ return chunkClientProcessingOrderGuarantee ;
69+ }
70+
71+ public void setChunkClientProcessingOrderGuarantee (final ChunkClientProcessingOrderGuarantee chunkClientProcessingOrderGuarantee ) {
72+ this .chunkClientProcessingOrderGuarantee = chunkClientProcessingOrderGuarantee ;
73+ }
74+
75+ public List <Node > getNodes () {
76+ return nodes ;
77+ }
78+
79+ public void setNodes (final List <Node > nodes ) {
80+ this .nodes = nodes ;
81+ }
82+
83+ public String getBucketName () {
84+ return bucketName ;
85+ }
86+
87+ public void setBucketName (final String bucketName ) {
88+ this .bucketName = bucketName ;
89+ }
90+
91+ public Priority getPriority () {
92+ return priority ;
93+ }
94+
95+ public void setPriority (final Priority priority ) {
96+ this .priority = priority ;
97+ }
98+
99+ public RequestType getRequestType () {
100+ return requestType ;
101+ }
102+
103+ public void setRequestType (final RequestType requestType ) {
104+ this .requestType = requestType ;
105+ }
106+
107+ public String getStartDate () {
108+ return startDate ;
109+ }
110+
111+ public void setStartDate (final String startDate ) {
112+ this .startDate = startDate ;
113+ }
114+
64115 @ Override
65116 public String toString () {
66117 return this .objects .toString ();
0 commit comments