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 1515
1616allprojects {
1717 group = ' com.spectralogic.ds3'
18- version = ' 3.2.8-COMPAT-3 '
18+ version = ' 3.2.8-COMPAT-4 '
1919}
2020
2121subprojects {
Original file line number Diff line number Diff line change 1919import com .fasterxml .jackson .annotation .JsonProperty ;
2020import com .fasterxml .jackson .dataformat .xml .annotation .JacksonXmlRootElement ;
2121import java .lang .String ;
22+ import java .util .UUID ;
2223
2324@ JacksonXmlRootElement (namespace = "Data" )
2425public class S3ObjectToDelete {
@@ -27,6 +28,10 @@ public class S3ObjectToDelete {
2728 @ JsonProperty ("Key" )
2829 private String key ;
2930
31+ // Variables
32+ @ JsonProperty ("VersionId" )
33+ private UUID versionId ;
34+
3035 // Constructor
3136 public S3ObjectToDelete () {
3237 //pass
@@ -41,5 +46,16 @@ public String getKey() {
4146 public void setKey (final String key ) {
4247 this .key = key ;
4348 }
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+ }
4561}
Original file line number Diff line number Diff line change 22
33import java .util .UUID ;
44
5+ import com .fasterxml .jackson .annotation .JsonInclude ;
56import com .fasterxml .jackson .annotation .JsonProperty ;
67
8+ @ JsonInclude ( JsonInclude .Include .NON_NULL )
79public class DeleteObject {
810
911 @ JsonProperty ("Key" )
You can’t perform that action at this time.
0 commit comments