com.microsoft.azure.storage.blob.models.BlobItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob Show documentation
Show all versions of azure-storage-blob Show documentation
The Azure Storage Java Blob library.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
package com.microsoft.azure.storage.blob.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
/**
* An Azure Storage blob.
*/
@JacksonXmlRootElement(localName = "Blob")
public final class BlobItem {
/**
* The name property.
*/
@JsonProperty(value = "Name", required = true)
private String name;
/**
* The deleted property.
*/
@JsonProperty(value = "Deleted", required = true)
private boolean deleted;
/**
* The snapshot property.
*/
@JsonProperty(value = "Snapshot", required = true)
private String snapshot;
/**
* The properties property.
*/
@JsonProperty(value = "Properties", required = true)
private BlobProperties properties;
/**
* The metadata property.
*/
@JsonProperty(value = "Metadata")
private Map metadata;
/**
* Get the name value.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name value.
*
* @param name the name value to set.
* @return the BlobItem object itself.
*/
public BlobItem withName(String name) {
this.name = name;
return this;
}
/**
* Get the deleted value.
*
* @return the deleted value.
*/
public boolean deleted() {
return this.deleted;
}
/**
* Set the deleted value.
*
* @param deleted the deleted value to set.
* @return the BlobItem object itself.
*/
public BlobItem withDeleted(boolean deleted) {
this.deleted = deleted;
return this;
}
/**
* Get the snapshot value.
*
* @return the snapshot value.
*/
public String snapshot() {
return this.snapshot;
}
/**
* Set the snapshot value.
*
* @param snapshot the snapshot value to set.
* @return the BlobItem object itself.
*/
public BlobItem withSnapshot(String snapshot) {
this.snapshot = snapshot;
return this;
}
/**
* Get the properties value.
*
* @return the properties value.
*/
public BlobProperties properties() {
return this.properties;
}
/**
* Set the properties value.
*
* @param properties the properties value to set.
* @return the BlobItem object itself.
*/
public BlobItem withProperties(BlobProperties properties) {
this.properties = properties;
return this;
}
/**
* Get the metadata value.
*
* @return the metadata value.
*/
public Map metadata() {
return this.metadata;
}
/**
* Set the metadata value.
*
* @param metadata the metadata value to set.
* @return the BlobItem object itself.
*/
public BlobItem withMetadata(Map metadata) {
this.metadata = metadata;
return this;
}
}