public class GetServicePropertiesResult extends Object
QueueContract.getServiceProperties() and
QueueContract.getServiceProperties(QueueServiceOptions).
See the Get Queue Service Properties documentation on MSDN for details of the underlying Queue Service REST API operation.
| Constructor and Description |
|---|
GetServicePropertiesResult() |
| Modifier and Type | Method and Description |
|---|---|
ServiceProperties |
getValue()
Gets a
ServiceProperties instance containing the service property
values associated with the storage account. |
void |
setValue(ServiceProperties value)
Reserved for internal use.
|
public ServiceProperties getValue()
ServiceProperties instance containing the service property
values associated with the storage account.
Modifying the values in the ServiceProperties instance returned
does not affect the values associated with the storage account. To change
the values in the storage account, call the
QueueContract.setServiceProperties(com.microsoft.windowsazure.services.queue.models.ServiceProperties) method and pass the modified
ServiceProperties instance as a parameter.
ServiceProperties instance containing the property
values associated with the storage account.public void setValue(ServiceProperties value)
ServiceProperties instance associated with a storage service call
result. This method is invoked by the API to store service properties
returned by a call to a REST operation and is not intended for public
use.value - A ServiceProperties instance containing the property
values associated with the storage account./**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/