com.microsoft.azure.storage.blob.models.Block 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;
/**
* Represents a single block in a block blob. It describes the block's ID and
* size.
*/
@JacksonXmlRootElement(localName = "Block")
public final class Block {
/**
* The base64 encoded block ID.
*/
@JsonProperty(value = "Name", required = true)
private String name;
/**
* The block size in bytes.
*/
@JsonProperty(value = "Size", required = true)
private int size;
/**
* 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 Block object itself.
*/
public Block withName(String name) {
this.name = name;
return this;
}
/**
* Get the size value.
*
* @return the size value.
*/
public int size() {
return this.size;
}
/**
* Set the size value.
*
* @param size the size value to set.
* @return the Block object itself.
*/
public Block withSize(int size) {
this.size = size;
return this;
}
}