File tree Expand file tree Collapse file tree 3 files changed +6
-28
lines changed
ds3-sdk/src/main/java/com/spectralogic/ds3client Expand file tree Collapse file tree 3 files changed +6
-28
lines changed Original file line number Diff line number Diff line change 1717package com .spectralogic .ds3client .commands .spectrads3 ;
1818
1919import com .spectralogic .ds3client .networking .HttpVerb ;
20- import com .spectralogic .ds3client .commands .interfaces .AbstractRequest ;
20+ import com .spectralogic .ds3client .commands .interfaces .AbstractIdsPayloadRequest ;
2121
22- public class ClearSuspectBlobDs3TargetsSpectraS3Request extends AbstractRequest {
22+ import java .util .List ;
23+
24+ public class ClearSuspectBlobDs3TargetsSpectraS3Request extends AbstractIdsPayloadRequest {
2325
2426 // Variables
2527
2628 private boolean force ;
2729
2830 // Constructor
2931
30-
31- public ClearSuspectBlobDs3TargetsSpectraS3Request () {
32+ public ClearSuspectBlobDs3TargetsSpectraS3Request ( final List < String > ids ) {
33+ super ( ids );
3234
3335 }
3436
Original file line number Diff line number Diff line change @@ -40,9 +40,6 @@ public class SuspectBlobPool {
4040 @ JsonProperty ("LastAccessed" )
4141 private Date lastAccessed ;
4242
43- @ JsonProperty ("ObsoletionId" )
44- private UUID obsoletionId ;
45-
4643 @ JsonProperty ("PoolId" )
4744 private UUID poolId ;
4845
@@ -98,15 +95,6 @@ public void setLastAccessed(final Date lastAccessed) {
9895 }
9996
10097
101- public UUID getObsoletionId () {
102- return this .obsoletionId ;
103- }
104-
105- public void setObsoletionId (final UUID obsoletionId ) {
106- this .obsoletionId = obsoletionId ;
107- }
108-
109-
11098 public UUID getPoolId () {
11199 return this .poolId ;
112100 }
Original file line number Diff line number Diff line change @@ -30,9 +30,6 @@ public class SuspectBlobTape {
3030 @ JsonProperty ("Id" )
3131 private UUID id ;
3232
33- @ JsonProperty ("ObsoletionId" )
34- private UUID obsoletionId ;
35-
3633 @ JsonProperty ("OrderIndex" )
3734 private int orderIndex ;
3835
@@ -64,15 +61,6 @@ public void setId(final UUID id) {
6461 }
6562
6663
67- public UUID getObsoletionId () {
68- return this .obsoletionId ;
69- }
70-
71- public void setObsoletionId (final UUID obsoletionId ) {
72- this .obsoletionId = obsoletionId ;
73- }
74-
75-
7664 public int getOrderIndex () {
7765 return this .orderIndex ;
7866 }
You can’t perform that action at this time.
0 commit comments