File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
ds3-sdk/src/main/java/com/spectralogic/ds3client/models Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 15
15
16
16
allprojects {
17
17
group = ' com.spectralogic.ds3'
18
- version = ' 3.2.8-COMPAT-3 '
18
+ version = ' 3.2.8-COMPAT-4 '
19
19
}
20
20
21
21
subprojects {
Original file line number Diff line number Diff line change 19
19
import com .fasterxml .jackson .annotation .JsonProperty ;
20
20
import com .fasterxml .jackson .dataformat .xml .annotation .JacksonXmlRootElement ;
21
21
import java .lang .String ;
22
+ import java .util .UUID ;
22
23
23
24
@ JacksonXmlRootElement (namespace = "Data" )
24
25
public class S3ObjectToDelete {
@@ -27,6 +28,10 @@ public class S3ObjectToDelete {
27
28
@ JsonProperty ("Key" )
28
29
private String key ;
29
30
31
+ // Variables
32
+ @ JsonProperty ("VersionId" )
33
+ private UUID versionId ;
34
+
30
35
// Constructor
31
36
public S3ObjectToDelete () {
32
37
//pass
@@ -41,5 +46,16 @@ public String getKey() {
41
46
public void setKey (final String key ) {
42
47
this .key = key ;
43
48
}
44
-
49
+
50
+
51
+ public UUID getVersionId ()
52
+ {
53
+ return versionId ;
54
+ }
55
+
56
+
57
+ public void setVersionId ( final UUID versionId )
58
+ {
59
+ this .versionId = versionId ;
60
+ }
45
61
}
Original file line number Diff line number Diff line change 2
2
3
3
import java .util .UUID ;
4
4
5
+ import com .fasterxml .jackson .annotation .JsonInclude ;
5
6
import com .fasterxml .jackson .annotation .JsonProperty ;
6
7
8
+ @ JsonInclude ( JsonInclude .Include .NON_NULL )
7
9
public class DeleteObject {
8
10
9
11
@ JsonProperty ("Key" )
You can’t perform that action at this time.
0 commit comments