com.netease.cloud.services.nos.internal.DeleteObjectsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.services.nos.internal;
import java.util.ArrayList;
import java.util.List;
import com.netease.cloud.services.nos.NosClient;
import com.netease.cloud.services.nos.model.DeleteObjectsResult;
import com.netease.cloud.services.nos.model.MultiObjectDeleteException;
import com.netease.cloud.services.nos.model.DeleteObjectsResult.DeletedObject;
import com.netease.cloud.services.nos.model.MultiObjectDeleteException.DeleteError;
/**
* Service response for deleteObjects API call. Not exposed to clients directly,
* but broken up into two classes to differentiate normal and exceptional
* completion of the API.
*
* @see DeleteObjectsResult
* @see MultiObjectDeleteException
* @see NosClient#deleteObjects(com.netease.cloud.services.nos.model.DeleteObjectsRequest)
*/
public class DeleteObjectsResponse {
public DeleteObjectsResponse(List deletedObjects, List errors) {
this.deletedObjects = deletedObjects;
this.errors = errors;
}
public List getDeletedObjects() {
return deletedObjects;
}
public void setDeletedObjects(List deletedObjects) {
this.deletedObjects = deletedObjects;
}
public List getErrors() {
return errors;
}
public void setErrors(List errors) {
this.errors = errors;
}
private List deletedObjects = new ArrayList();
private List errors = new ArrayList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy