forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopyObjectRequest.java
More file actions
981 lines (914 loc) · 35.2 KB
/
CopyObjectRequest.java
File metadata and controls
981 lines (914 loc) · 35.2 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
/*
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. 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.Date;
import java.util.List;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3Client;
import com.amazonaws.services.s3.internal.Constants;
/**
* <p>
* Provides options for copying an Amazon S3 object
* from a source location to a new destination.
* </p>
* <p>
* All <code>CopyObjectRequests</code> must specify a source bucket and key, along with a destination
* bucket and key. Beyond that, requests also specify:
* </p>
* <ul>
* <li>Object metadata for new object,</li>
* <li>A {@link CannedAccessControlList} for the new object,</li>
* <li>Constraints controlling if the copy will be performed or not.</li>
* </ul>
*
* @see AmazonS3Client#copyObject(String, String, String, String)
* @see AmazonS3Client#copyObject(com.amazonaws.services.s3.model.CopyObjectRequest)
* @see CopyObjectResult
*/
public class CopyObjectRequest extends AmazonWebServiceRequest {
/** The name of the bucket containing the object to be copied */
private String sourceBucketName;
/**
* The key in the source bucket under which the object to be copied is
* stored
*/
private String sourceKey;
/**
* Optional version Id specifying which version of the source object to
* copy. If not specified, the most recent version of the source object will
* be copied.
* <p>
* For more information about enabling versioning for a bucket, see
* {@link AmazonS3#setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)}.
*/
private String sourceVersionId;
/** The name of the bucket to contain the copy of the source object */
private String destinationBucketName;
/**
* The key in the destination bucket under which the source object will be
* copied
*/
private String destinationKey;
/**
* The optional Amazon S3 storage class to use when storing the newly copied
* object. If not specified, the default, standard storage class will be used.
* <p>
* For more information on Amazon S3 storage classes and available values,
* see the {@link StorageClass} enumeration.
*/
private String storageClass;
/** Optional field specifying the object metadata for the new object */
private ObjectMetadata newObjectMetadata;
/** Optional field specifying the ACL for the new object */
private CannedAccessControlList cannedACL;
/**
* An optional access control list to apply to the new object. If specified,
* cannedAcl will be ignored.
*/
private AccessControlList accessControlList;
/**
* Optional list of ETag values that constrain the copy request to only be
* executed if the source object's ETag matches one of the specified ETag
* values.
*/
private List<String> matchingETagConstraints = new ArrayList<String>();
/**
* Optional list of ETag values that constrain the copy request to only be
* executed if the source object's ETag does not match any of the specified
* ETag constraint values.
*/
private List<String> nonmatchingEtagConstraints = new ArrayList<String>();
/**
* Optional field that constrains the copy request to only be executed if
* the source object has not been modified since the specified date.
*/
private Date unmodifiedSinceConstraint;
/**
* Optional field that constrains the copy request to only be executed if
* the source object has been modified since the specified date.
*/
private Date modifiedSinceConstraint;
/** Optional field specifying the redirect location for the new object */
private String redirectLocation;
/**
* <p>
* Constructs a new
* {@link com.amazonaws.services.s3.model#CopyObjectRequest}
* with only basic options.
* </p>
*
* @param sourceBucketName
* The name of the S3 bucket containing the object to copy.
* @param sourceKey
* The source bucket key under which the object to copy is
* stored.
* @param destinationBucketName
* The name of the S3 bucket to which the new object will be
* copied.
* @param destinationKey
* The destination bucket key under which the new object
* will be copied.
*
* @see CopyObjectRequest#CopyObjectRequest(String, String, String, String, String)
*/
public CopyObjectRequest(String sourceBucketName, String sourceKey,
String destinationBucketName, String destinationKey) {
this(sourceBucketName, sourceKey, null, destinationBucketName, destinationKey);
}
/**
* <p>
* Constructs a new {@link CopyObjectRequest} with basic options, providing
* an S3 version ID identifying the specific version of the source object
* to copy.
* </p>
*
* @param sourceBucketName
* The name of the S3 bucket containing the object to copy.
* @param sourceKey
* The key in the source bucket under which the object to copy is
* stored.
* @param sourceVersionId
* The S3 version ID which uniquely identifies a specific version
* of the source object to copy.
* @param destinationBucketName
* The name of the S3 bucket in which the new object will be
* copied.
* @param destinationKey
* The key in the destination bucket under which the new object
* will be copied.
*
* @see CopyObjectRequest#CopyObjectRequest(String sourceBucketName, String sourceKey, String destinationBucketName, String destinationKey)
*/
public CopyObjectRequest(String sourceBucketName, String sourceKey, String sourceVersionId,
String destinationBucketName, String destinationKey) {
this.sourceBucketName = sourceBucketName;
this.sourceKey = sourceKey;
this.sourceVersionId = sourceVersionId;
this.destinationBucketName = destinationBucketName;
this.destinationKey = destinationKey;
}
/**
* Gets the name of the bucket containing the source object to be copied.
*
* @return The name of the bucket containing the source object to be copied.
*
* @see CopyObjectRequest#setSourceBucketName(String sourceBucketName)
*/
public String getSourceBucketName() {
return sourceBucketName;
}
/**
* Sets the name of the bucket containing the source object to be copied.
*
* @param sourceBucketName
* The name of the bucket containing the source object to be
* copied.
* @see CopyObjectRequest#getSourceBucketName()
*/
public void setSourceBucketName(String sourceBucketName) {
this.sourceBucketName = sourceBucketName;
}
/**
* Sets the name of the bucket containing the source object to be copied,
* and returns this object, enabling additional method calls to be chained
* together.
*
* @param sourceBucketName
* The name of the bucket containing the source object to be
* copied.
*
* @return This <code>CopyObjectRequest</code> instance,
* enabling additional method calls to be chained together.
*/
public CopyObjectRequest withSourceBucketName(String sourceBucketName) {
setSourceBucketName(sourceBucketName);
return this;
}
/**
* Gets the source bucket key under which the source object to be
* copied is stored.
*
* @return The source bucket key under which the source object to be
* copied is stored.
*
* @see CopyObjectRequest#setSourceKey(String sourceKey)
*/
public String getSourceKey() {
return sourceKey;
}
/**
* Sets the source bucket key under which the source object to be
* copied is stored.
*
* @param sourceKey
* The source bucket key under which the source object to
* be copied is stored.
*
* @see CopyObjectRequest#setSourceKey(String sourceKey)}
*/
public void setSourceKey(String sourceKey) {
this.sourceKey = sourceKey;
}
/**
* Sets the key in the source bucket under which the source object to be
* copied is stored and returns this object, enabling additional method calls
* to be chained together.
*
* @param sourceKey
* The key in the source bucket under which the source object to
* be copied is stored.
*
* @return This <code>CopyObjectRequest</code> instance, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withSourceKey(String sourceKey) {
setSourceKey(sourceKey);
return this;
}
/**
* <p>
* Gets the version ID specifying which version of the source
* object to copy. If not specified, the most recent version of the source
* object will be copied.
* </p>
* <p>
* Objects created before enabling versioning or when versioning is
* suspended are given the default <code>null</code> version ID (see
* {@link Constants#NULL_VERSION_ID}). Note that the
* <code>null</code> version ID is a valid version ID and is not the
* same as not having a version ID.
* </p>
* <p>
* For more information about enabling versioning for a bucket, see
* {@link AmazonS3#setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)}.
* </p>
*
* @return The version ID specifying which version of the source
* object to copy.
*
*
* @see Constants#NULL_VERSION_ID
* @see CopyObjectRequest#setSourceVersionId(String sourceVersionId)
*/
public String getSourceVersionId() {
return sourceVersionId;
}
/**
* <p>
* Sets the optional version ID specifying which version of the source
* object to copy. If not specified, the most recent version of the source
* object will be copied.
* </p>
* <p>
* Objects created before enabling versioning or when versioning is
* suspended are given the default <code>null</code> version ID (see
* {@link Constants#NULL_VERSION_ID}). Note that the
* <code>null</code> version ID is a valid version ID and is not the
* same as not having a version ID.
* </p>
* <p>
* For more information about enabling versioning for a bucket, see
* {@link AmazonS3#setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)}.
* </p>
*
* @param sourceVersionId
* The optional version ID specifying which version of the
* source object to copy.
*/
public void setSourceVersionId(String sourceVersionId) {
this.sourceVersionId = sourceVersionId;
}
/**
* <p>
* Sets the optional version ID specifying which version of the source
* object to copy and returns this object, enabling additional method calls
* to be chained together. If not specified, the most recent version of the
* source object will be copied.
* </p>
* <p>
* Objects created before enabling versioning or when versioning is
* suspended are given the default <code>null</code> version ID (see
* {@link Constants#NULL_VERSION_ID}). Note that the
* <code>null</code> version ID is a valid version ID and is not the
* same as not having a version ID.
* </p>
* <p>
* For more information about enabling versioning for a bucket, see
* {@link AmazonS3#setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)}.
* </p>
*
* @param sourceVersionId
* The optional version ID specifying which version of the
* source object to copy.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withSourceVersionId(String sourceVersionId) {
setSourceVersionId(sourceVersionId);
return this;
}
/**
* Gets the destination bucket name which will contain the new,
* copied object.
*
* @return The name of the destination bucket which will contain the new,
* copied object.
*
* @see CopyObjectRequest#setDestinationBucketName(String destinationBucketName)
*/
public String getDestinationBucketName() {
return destinationBucketName;
}
/**
* Sets the destination bucket name which will contain the new,
* copied object.
*
* @param destinationBucketName
* The name of the destination bucket which will contain the new,
* copied object.
*
* @see CopyObjectRequest#getDestinationBucketName()
*/
public void setDestinationBucketName(String destinationBucketName) {
this.destinationBucketName = destinationBucketName;
}
/**
* Sets the name of the destination bucket which will contain the new,
* copied object and returns this object, enabling additional method calls
* to be chained together.
*
* @param destinationBucketName
* The name of the destination bucket which will contain the new,
* copied object.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withDestinationBucketName(String destinationBucketName) {
setDestinationBucketName(destinationBucketName);
return this;
}
/**
* Gets the destination bucket key under which the new, copied
* object will be stored.
*
* @return The destination bucket key under which the new, copied
* object will be stored.
*
* @see CopyObjectRequest#setDestinationKey(String destinationKey)
*/
public String getDestinationKey() {
return destinationKey;
}
/**
* Sets the destination bucket key under which the new, copied object
* will be stored.
*
* @param destinationKey
* The destination bucket key under which the new, copied
* object will be stored.
*
* @see CopyObjectRequest#getDestinationKey()
*/
public void setDestinationKey(String destinationKey) {
this.destinationKey = destinationKey;
}
/**
* Sets the destination bucket key under which the new, copied object
* will be stored and returns this object, enabling additional method calls
* can be chained together.
*
* @param destinationKey
* The destination bucket key under which the new, copied
* object will be stored.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withDestinationKey(String destinationKey) {
setDestinationKey(destinationKey);
return this;
}
/*
* Optional Request Properties
*/
/**
* <p>
* Gets the optional Amazon S3 storage class to use when storing the newly
* copied object. If not specified, the default standard storage class is
* used.
* </p>
* <p>
* For more information on available Amazon S3 storage classes, see the
* {@link StorageClass} enumeration.
* </p>
*
* @return The Amazon S3 storage class to use when storing the newly copied
* object.
*
* @see CopyObjectRequest#setStorageClass(String)
* @see CopyObjectRequest#setStorageClass(StorageClass)
*/
public String getStorageClass() {
return storageClass;
}
/**
* <p>
* Sets the optional Amazon S3 storage class to use when storing the newly
* copied object. If not specified, the default standard storage class is
* used.
* </p>
* <p>
* For more information on Amazon S3 storage classes and available values,
* see the {@link StorageClass} enumeration.
* </p>
*
* @return The Amazon S3 storage class to use when storing the newly copied
* object.
*
* @see CopyObjectRequest#getStorageClass()
* @see CopyObjectRequest#setStorageClass(StorageClass)
*/
public void setStorageClass(String storageClass) {
this.storageClass = storageClass;
}
/**
* <p>
* Sets the optional Amazon S3 storage class to use when storing the newly
* copied object and returns this <code>CopyObjectRequest</code>, enabling additional
* method calls to be chained together. If not specified, the default
* standard storage class is used.
* </p>
* <p>
* For more information on Amazon S3 storage classes and available values,
* see the {@link StorageClass} enumeration.
* </p>
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withStorageClass(String storageClass) {
setStorageClass(storageClass);
return this;
}
/**
* <p>
* Sets the optional Amazon S3 storage class to use when storing the newly
* copied object. If not specified, the default standard storage class
* is used.
* </p>
* <p>
* For more information on Amazon S3 storage classes and available values,
* see the {@link StorageClass} enumeration.
* </p>
*
* @return The Amazon S3 storage class to use when storing the newly copied
* object.
*
* @see CopyObjectRequest#getStorageClass()
* @see CopyObjectRequest#setStorageClass(String)
*/
public void setStorageClass(StorageClass storageClass) {
this.storageClass = storageClass.toString();
}
/**
* <p>
* Sets the optional Amazon S3 storage class to use when storing the newly
* copied object and returns this CopyObjectRequest, enabling additional
* method calls to be chained together. If not specified, the default standard storage class
* is used.
* </p>
* <p>
* For more information on Amazon S3 storage classes and available values,
* see the {@link StorageClass} enumeration.
* </p>
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withStorageClass(StorageClass storageClass) {
setStorageClass(storageClass);
return this;
}
/**
* Gets the canned ACL to use for the new, copied object. If no canned
* ACL is specified, S3 will default to using the
* {@link CannedAccessControlList#Private} canned ACL for all copied
* objects.
*
* @return The canned ACL to set for the newly copied object,
* or <code>null</code> if no
* canned ACL has been specified.
*/
public CannedAccessControlList getCannedAccessControlList() {
return cannedACL;
}
/**
* Sets the canned ACL to use for the newly copied object. If no canned ACL
* is specified, S3 will default to using the
* {@link CannedAccessControlList#Private} canned ACL for all copied
* objects.
*
* @param cannedACL
* The canned ACL to set for the newly copied object.
*/
public void setCannedAccessControlList(CannedAccessControlList cannedACL) {
this.cannedACL = cannedACL;
}
/**
* Sets the canned ACL to use for the newly copied object, and returns this
* <code>CopyObjectRequest</code>, enabling additional method calls to be chained
* together.
*
* @param cannedACL
* The canned ACL to set for the newly copied object.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withCannedAccessControlList(CannedAccessControlList cannedACL) {
setCannedAccessControlList(cannedACL);
return this;
}
/**
* Returns the optional access control list for the new object. If
* specified, cannedAcl will be ignored.
*/
public AccessControlList getAccessControlList() {
return accessControlList;
}
/**
* Sets the optional access control list for the new object. If specified,
* cannedAcl will be ignored.
*
* @param accessControlList
* The access control list for the new object.
*/
public void setAccessControlList(AccessControlList accessControlList) {
this.accessControlList = accessControlList;
}
/**
* Sets the optional access control list for the new object. If specified,
* cannedAcl will be ignored. Returns this {@link CopyObjectRequest},
* enabling additional method calls to be chained together.
*
* @param accessControlList
* The access control list for the new object.
*/
public CopyObjectRequest withAccessControlList(AccessControlList accessControlList) {
setAccessControlList(accessControlList);
return this;
}
/**
* Gets the optional object metadata to set for the new, copied object.
*
* @return The object metadata to set for the newly copied object.
* Returns <code>null</code> if no object metadata has been specified.
*
* @see CopyObjectRequest#setNewObjectMetadata(ObjectMetadata newObjectMetadata)
*/
public ObjectMetadata getNewObjectMetadata() {
return newObjectMetadata;
}
/**
* Sets the object metadata to use for the new, copied object. By default
* the object metadata from the source object is copied to the
* destination object, but when setting object metadata with this method,
* no metadata from the source object is copied. Instead, the new
* destination object will have the metadata specified with this call.
*
* @param newObjectMetadata
* The object metadata to use for the newly copied object.
*
* @see CopyObjectRequest#getNewObjectMetadata()
*/
public void setNewObjectMetadata(ObjectMetadata newObjectMetadata) {
this.newObjectMetadata = newObjectMetadata;
}
/**
* Sets the object metadata to use for the new, copied object and returns
* this object, enabling additional method calls to be chained together. By
* default, the object metadata from the source object will be copied to the
* destination object, but if callers set object metadata with this method,
* it will be used instead.
*
* @param newObjectMetadata
* The object metadata to use for the newly copied object.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withNewObjectMetadata(ObjectMetadata newObjectMetadata) {
setNewObjectMetadata(newObjectMetadata);
return this;
}
/*
* Optional Constraints
*/
/**
* <p>
* Gets the optional list of ETag constraints that, when present, <b>must</b>
* include a match for the source object's current ETag in order for the
* copy object request to be executed. Only one ETag in the list needs to
* match for the request to be executed by Amazon S3.
* </p>
* <p>
* Matching ETag constraints may be used with the unmodified since
* constraint, but not with any other type of constraint.
* </p>
*
* @return The optional list of ETag constraints that when present must
* include a match for the source object's current ETag in order for
* this request to be executed.
*/
public List<String> getMatchingETagConstraints() {
return matchingETagConstraints;
}
/**
* <p>
* Sets the optional list of ETag constraints that, when present, <b>must</b>
* include a match for the source object's current ETag in order for the
* copy object request to be executed. If none of the specified ETags match
* the source object's current ETag, the copy object operation will be
* aborted. Only one ETag in the list needs to match for the request to be
* executed by Amazon S3.
* </p>
* <p>
* Matching ETag constraints may be used with the unmodified since
* constraint, but not with any other type of constraint.
* </p>
*
* @param eTagList
* The optional list of ETag constraints that must include a
* match for the source object's current ETag in order for this
* request to be executed.
*/
public void setMatchingETagConstraints(List<String> eTagList) {
this.matchingETagConstraints = eTagList;
}
/**
* <p>
* Adds a single ETag constraint to this request and returns this object,
* enabling additional method calls to be chained together. Multiple ETag
* constraints can be added to a request, but one must match the source
* object's current ETag in order for the copy object request to be
* executed. If none of the ETag constraints added to this request match the
* source object's current ETag, the copy object operation will be aborted.
* </p>
* <p>
* Matching ETag constraints may be used with the unmodified since
* constraint, but not with any other type of constraint.
* </p>
*
* @param eTag
* The matching ETag constraint to add to this request.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withMatchingETagConstraint(String eTag) {
this.matchingETagConstraints.add(eTag);
return this;
}
/**
* <p>
* Gets the optional list of ETag constraints that, when present, <b>must
* not</b> include a match for the source object's current ETag in order for
* the copy object request to be executed. If any entry in the non-matching
* ETag constraint list matches the source object's current ETag, this copy
* request <b>will not</b> be executed by Amazon S3.
* </p>
* <p>
* Non-matching ETag constraints may be used with the modified since
* constraint, but not with any other type of constraint.
* </p>
*
* @return The optional list of ETag constraints that when present <b>must
* not</b> include a match for the source object's current ETag in
* order for this request to be executed.
*/
public List<String> getNonmatchingETagConstraints() {
return nonmatchingEtagConstraints;
}
/**
* <p>
* Sets the optional list of ETag constraints that, when present, <b>must
* not</b> include a match for the source object's current ETag in order for
* the copy object request to be executed. If any entry in the non-matching
* ETag constraint list matches the source object's current ETag, this copy
* request <b>will not</b> be executed by Amazon S3.
* </p>
* <p>
* Non-matching ETag constraints may be used with the modified since
* constraint, but not with any other type of constraint.
* </p>
*
* @param eTagList
* The list of ETag constraints that, when present, <b>must not</b>
* include a match for the source object's current ETag in
* order for this request to be executed.
*/
public void setNonmatchingETagConstraints(List<String> eTagList) {
this.nonmatchingEtagConstraints = eTagList;
}
/**
* <p>
* Adds a single ETag constraint to this request and returns this object, enabling
* additional method calls to be chained together. Multiple ETag
* constraints can be added to a request, but all ETag constraints <b>must
* not</b> match the source object's current ETag in order for the copy
* object request to be executed. If any entry in the non-matching ETag
* constraint list matches the source object's current ETag, this copy
* request <b>will not</b> be executed by Amazon S3.
* </p>
* <p>
* Non-matching ETag constraints may be used with the modified since
* constraint, but not with any other type of constraint.
* </p>
*
* @param eTag
* The non-matching ETag constraint to add to this request.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withNonmatchingETagConstraint(String eTag) {
this.nonmatchingEtagConstraints.add(eTag);
return this;
}
/**
* <p>
* Gets the optional unmodified constraint that restricts this
* request to executing only if the source object has <b>not</b> been
* modified after the specified date.
* </p>
* <p>
* The unmodified since constraint may be used with matching ETag
* constraints, but not with any other type of constraint.
* </p>
*
* @return The optional unmodified constraint that restricts this
* request to executing only if the source object has <b>not</b>
* been modified after the specified date.
*/
public Date getUnmodifiedSinceConstraint() {
return unmodifiedSinceConstraint;
}
/**
* <p>
* Sets the optional unmodified constraint that restricts this request
* to executing only if the source object has <b>not</b> been
* modified after the specified date.
* </p>
* <p>
* The unmodified constraint may be used with matching ETag
* constraints, but not with any other type of constraint.
* </p>
* <p>
* Note that Amazon S3 will ignore any dates occurring in the future.
* </p>
*
* @param date
* The unmodified constraint that restricts this request to
* executing only if the source object has <b>not</b> been
* modified after this date.
*/
public void setUnmodifiedSinceConstraint(Date date) {
this.unmodifiedSinceConstraint = date;
}
/**
* <p>
* Sets the optional unmodified constraint that restricts this request
* to executing only if the source object has <b>not</b> been
* modified after the specified date. Returns this object, enabling
* additional method calls to be chained together.
* </p>
* <p>
* The unmodified constraint may be used with matching ETag
* constraints, but not with any other type of constraint.
* </p>
* <p>
* Note that Amazon S3 will ignore any dates occurring in the future.
* </p>
*
* @param date
* The unmodified constraint that restricts this request to
* executing only if the source object has <b>not</b> been
* modified after this date.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withUnmodifiedSinceConstraint(Date date) {
setUnmodifiedSinceConstraint(date);
return this;
}
/**
* <p>
* Gets the optional modified constraint that restricts this
* request to executing only if the source object <b>has</b> been
* modified after the specified date.
* </p>
* <p>
* The modified constraint may be used with non-matching ETag
* constraints, but not with any other type of constraint.
* </p>
*
* @return The optional modified constraint that restricts this
* request to executing only if the source object <b>has</b>
* been modified after the specified date.
*/
public Date getModifiedSinceConstraint() {
return modifiedSinceConstraint;
}
/**
* <p>
* Sets the optional modified constraint that restricts this request
* to executing only if the source object <b>has</b> been modified
* after the specified date.
* </p>
* <p>
* The modified constraint may be used with non-matching ETag
* constraints, but not with any other type of constraint.
* </p>
* <p>
* Note that Amazon S3 will ignore any dates occurring in the future.
* </p>
*
* @param date
* The modified constraint that restricts this request to
* executing only if the source object <b>has</b> been
* modified after the specified date.
*/
public void setModifiedSinceConstraint(Date date) {
this.modifiedSinceConstraint = date;
}
/**
* <p>
* Sets the optional modified constraint that restricts this request
* to executing only if the source object <b>has</b> been modified
* after the specified date. Returns this object, enabling additional
* method calls to be chained together.
* </p>
* <p>
* The modified constraint may be used with non-matching ETag
* constraints, but not with any other type of constraint.
* </p>
* <p>
* Note that Amazon S3 will ignore any dates occurring in the future.
* </p>
*
* @param date
* The modified constraint that restricts this request to
* executing only if the source object <b>has</b> been
* modified after the specified date.
*
* @return This <code>CopyObjectRequest</code>, enabling additional method calls to be
* chained together.
*/
public CopyObjectRequest withModifiedSinceConstraint(Date date) {
setModifiedSinceConstraint(date);
return this;
}
/**
* Sets the optional redirect location for the newly copied object.
*
* @param redirectLocation
* The redirect location for the newly copied object.
*/
public void setRedirectLocation(String redirectLocation) {
this.redirectLocation = redirectLocation;
}
/**
* Gets the optional redirect location for the newly copied object.
*/
public String getRedirectLocation() {
return this.redirectLocation;
}
/**
* Sets the optional redirect location for the newly copied object.Returns this
* {@link CopyObjectRequest}, enabling additional method calls to be chained
* together.
* @param redirectLocation
* The redirect location for the newly copied object.
*/
public CopyObjectRequest withRedirectLocation(String redirectLocation) {
this.redirectLocation = redirectLocation;
return this;
}
}