forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeleteObjectsResult.java
More file actions
103 lines (85 loc) · 3.02 KB
/
DeleteObjectsResult.java
File metadata and controls
103 lines (85 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
* Copyright 2011-2013 Amazon Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
* OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and
* limitations under the License.
*/
package com.amazonaws.services.s3.model;
import java.util.ArrayList;
import java.util.List;
import com.amazonaws.services.s3.AmazonS3;
/**
* Successful response to {@link AmazonS3#deleteObjects(DeleteObjectsRequest)}.
* If one or more objects couldn't be deleted as instructed, a
* {@link MultiObjectDeleteException} is thrown instead.
*
* @see AmazonS3#deleteObjects(DeleteObjectsRequest)
*/
public class DeleteObjectsResult {
private final List<DeletedObject> deletedObjects = new ArrayList<DeleteObjectsResult.DeletedObject>();
public DeleteObjectsResult(List<DeletedObject> deletedObjects) {
this.deletedObjects.addAll(deletedObjects);
}
/**
* Returns the list of successfully deleted objects from this request. If
* {@link DeleteObjectsRequest#getQuiet()} is true, only error responses
* will be returned from s3, so this list will be empty.
*/
public List<DeletedObject> getDeletedObjects() {
return deletedObjects;
}
/**
* A successfully deleted object.
*/
static public class DeletedObject {
private String key;
private String versionId;
private boolean deleteMarker;
private String deleteMarkerVersionId;
/**
* Returns the key that was successfully deleted.
*/
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
/**
* Returns the version deleted, or null for unversioned objects.
*/
public String getVersionId() {
return versionId;
}
public void setVersionId(String versionId) {
this.versionId = versionId;
}
/**
* Returns whether the object deleted was a delete marker.
*/
public boolean isDeleteMarker() {
return deleteMarker;
}
public void setDeleteMarker(boolean deleteMarker) {
this.deleteMarker = deleteMarker;
}
/**
* Returns the versionId for the delete marker that was created when
* doing a non-versioned delete in a versioned bucket.
*/
public String getDeleteMarkerVersionId() {
return deleteMarkerVersionId;
}
public void setDeleteMarkerVersionId(String deleteMarkerVersionId) {
this.deleteMarkerVersionId = deleteMarkerVersionId;
}
}
}