com.azure.storage.blob.implementation.models.BlobPrefixInternal 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
This module contains client library for Microsoft Azure Blob Storage.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.storage.blob.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
/** The BlobPrefix model. */
@JacksonXmlRootElement(localName = "BlobPrefix")
@Fluent
public final class BlobPrefixInternal {
/*
* The Name property.
*/
@JsonProperty(value = "Name", required = true)
private BlobName name;
/** Creates an instance of BlobPrefix class. */
public BlobPrefixInternal() {}
/**
* Get the name property: The Name property.
*
* @return the name value.
*/
public BlobName getName() {
return this.name;
}
/**
* Set the name property: The Name property.
*
* @param name the name value to set.
* @return the BlobPrefix object itself.
*/
public BlobPrefixInternal setName(BlobName name) {
this.name = name;
return this;
}
}