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

com.azure.storage.blob.implementation.models.BlobPrefixInternal Maven / Gradle / Ivy

There is a newer version: 12.29.0
Show newest version
// 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy