File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
ds3-sdk/src/main/java/com/spectralogic/ds3client/models Expand file tree Collapse file tree 2 files changed +5
-4
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-SNAPSHOT-4 '
18
+ version = ' 3.2.8-SNAPSHOT-5 '
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 {
@@ -29,7 +30,7 @@ public class S3ObjectToDelete {
29
30
30
31
// Variables
31
32
@ JsonProperty ("VersionId" )
32
- private String versionId ;
33
+ private UUID versionId ;
33
34
34
35
// Constructor
35
36
public S3ObjectToDelete () {
@@ -47,13 +48,13 @@ public void setKey(final String key) {
47
48
}
48
49
49
50
50
- public String getVersionId ()
51
+ public UUID getVersionId ()
51
52
{
52
53
return versionId ;
53
54
}
54
55
55
56
56
- public void setVersionId ( final String versionId )
57
+ public void setVersionId ( final UUID versionId )
57
58
{
58
59
this .versionId = versionId ;
59
60
}
You can’t perform that action at this time.
0 commit comments