All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netease.cloud.services.nos.model.DeleteObjectsRequest Maven / Gradle / Ivy

The newest version!
package com.netease.cloud.services.nos.model;

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

import com.netease.cloud.WebServiceRequest;
import com.netease.cloud.services.nos.Nos;

/**
 * 

* Provides options for deleting multiple objects in a specified bucket. Once * deleted, the object(s) can only be restored if versioning was enabled when * the object(s) was deleted. *

* * @see Nos#deleteObjects(DeleteObjectsRequest) */ public class DeleteObjectsRequest extends WebServiceRequest { /** * The name of the bucket containing the object(s) to delete. */ private String bucketName; /** * Whether to enable quiet mode for the response. In quiet mode, only errors * are reported. Defaults to false. */ private boolean quiet; /** * List of keys to delete, with optional versions. */ private List keys = new ArrayList(); /** * Constructs a new {@link DeleteObjectsRequest}, specifying the objects' * bucket name. * * @param bucketName * The name of the bucket containing the object(s) to delete. */ public DeleteObjectsRequest(String bucketName) { setBucketName(bucketName); } /** * Gets the name of the bucket containing the object(s) to delete. * * @return The name of the bucket containing the object(s) to delete. * @see DeleteObjectsRequest#setBucketName(String) */ public String getBucketName() { return bucketName; } /** * Sets the name of the bucket containing the object(s) to delete. * * @param bucketName * The name of the bucket containing the object(s) to delete. * @see DeleteObjectsRequest#getBucketName() */ public void setBucketName(String bucketName) { this.bucketName = bucketName; } /** * Sets the name of the bucket containing the object(s) to delete and * returns this object, enabling additional method calls to be chained * together. * * @param bucketName * The name of the bucket containing the object(s) to delete. * @return The updated {@link DeleteObjectsRequest} object, enabling * additional method calls to be chained together. */ public DeleteObjectsRequest withBucketName(String bucketName) { setBucketName(bucketName); return this; } /** * Sets the quiet element for this request. When true, only errors will be * returned in the service response. */ public void setQuiet(boolean quiet) { this.quiet = quiet; } /** * Returns the quiet element for this request. When true, only errors will * be returned in the service response. */ public boolean getQuiet() { return quiet; } /** * Sets the quiet element for this request. When true, only errors will be * returned in the service response. * * @return this, to chain multiple calls together. */ public DeleteObjectsRequest withQuiet(boolean quiet) { this.setQuiet(quiet); return this; } /** * Sets the list of keys to delete from this bucket, clearing any existing * list of keys. * * @param keys * The list of keys to delete from this bucket */ public void setKeys(List keys) { this.keys.clear(); this.keys.addAll(keys); } /** * Sets the list of keys to delete from this bucket, clearing any existing * list of keys. * * @param keys * The list of keys to delete from this bucket * * @return this, to chain multiple calls togethers. */ public DeleteObjectsRequest withKeys(List keys) { setKeys(keys); return this; } /** * Returns the list of keys to delete from this bucket. */ public List getKeys() { return keys; } /** * Convenience method to specify a set of keys without versions. * * @see DeleteObjectsRequest#withKeys(List) */ public DeleteObjectsRequest withKeys(String... keys) { List keyVersions = new LinkedList(); for (String key : keys) { keyVersions.add(new KeyVersion(key)); } setKeys(keyVersions); return this; } /** * A key to delete, with an optional version attribute. */ public static class KeyVersion { private final String key; private final String version; /** * Constructs a key without a version. */ public KeyVersion(String key) { this(key, null); } /** * Constructs a key-version pair. */ public KeyVersion(String key, String version) { this.key = key; this.version = version; } public String getKey() { return key; } public String getVersion() { return version; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy