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.appservice.implementation; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.management.appservice.ProxyOnlyResource;
Domain ownership Identifier.
/** * Domain ownership Identifier. */
@JsonFlatten public class DomainOwnershipIdentifierInner extends ProxyOnlyResource {
Ownership Id.
/** * Ownership Id. */
@JsonProperty(value = "properties.ownershipId") private String ownershipId;
Get ownership Id.
Returns:the ownershipId value
/** * Get ownership Id. * * @return the ownershipId value */
public String ownershipId() { return this.ownershipId; }
Set ownership Id.
Params:
  • ownershipId – the ownershipId value to set
Returns:the DomainOwnershipIdentifierInner object itself.
/** * Set ownership Id. * * @param ownershipId the ownershipId value to set * @return the DomainOwnershipIdentifierInner object itself. */
public DomainOwnershipIdentifierInner withOwnershipId(String ownershipId) { this.ownershipId = ownershipId; return this; } }