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.
/** * 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. */
package com.microsoft.azure.management.storage.implementation; import java.util.Map; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.ProxyResource;
The ListQueueInner model.
/** * The ListQueueInner model. */
@JsonFlatten public class ListQueueInner extends ProxyResource {
A name-value pair that represents queue metadata.
/** * A name-value pair that represents queue metadata. */
@JsonProperty(value = "properties.metadata") private Map<String, String> metadata;
Get a name-value pair that represents queue metadata.
Returns:the metadata value
/** * Get a name-value pair that represents queue metadata. * * @return the metadata value */
public Map<String, String> metadata() { return this.metadata; }
Set a name-value pair that represents queue metadata.
Params:
  • metadata – the metadata value to set
Returns:the ListQueueInner object itself.
/** * Set a name-value pair that represents queue metadata. * * @param metadata the metadata value to set * @return the ListQueueInner object itself. */
public ListQueueInner withMetadata(Map<String, String> metadata) { this.metadata = metadata; return this; } }