Skip to content

Commit f7a641d

Browse files
committed
Adding in handling for ChunkClientProcessingOrderGuarantee
1 parent 6f50b6b commit f7a641d

File tree

3 files changed

+60
-1
lines changed

3 files changed

+60
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: 'maven'
1919
sourceCompatibility = JavaVersion.VERSION_1_7
2020

2121
jar.archiveName = 'ds3_java_sdk'
22-
version = '0.4.0-SNAPSHOT'
22+
version = '0.7.0-SNAPSHOT'
2323
group = 'com.spectralogic'
2424

2525
install.dependsOn test //make sure that the tests get ran before attempting to install
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.spectralogic.ds3client.models.bulk;
2+
3+
/**
4+
* Created by ryanmo on 8/8/2014.
5+
*/
6+
public enum ChunkClientProcessingOrderGuarantee {
7+
IN_ORDER, NONE
8+
}

src/main/java/com/spectralogic/ds3client/models/bulk/MasterObjectList.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)