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.network;
import com.fasterxml.jackson.annotation.JsonProperty;
Properties of the Radius client root certificate of VpnServerConfiguration.
/**
* Properties of the Radius client root certificate of VpnServerConfiguration.
*/
public class VpnServerConfigRadiusClientRootCertificate {
The certificate name.
/**
* The certificate name.
*/
@JsonProperty(value = "name")
private String name;
The Radius client root certificate thumbprint.
/**
* The Radius client root certificate thumbprint.
*/
@JsonProperty(value = "thumbprint")
private String thumbprint;
Get the certificate name.
Returns: the name value
/**
* Get the certificate name.
*
* @return the name value
*/
public String name() {
return this.name;
}
Set the certificate name.
Params: - name – the name value to set
Returns: the VpnServerConfigRadiusClientRootCertificate object itself.
/**
* Set the certificate name.
*
* @param name the name value to set
* @return the VpnServerConfigRadiusClientRootCertificate object itself.
*/
public VpnServerConfigRadiusClientRootCertificate withName(String name) {
this.name = name;
return this;
}
Get the Radius client root certificate thumbprint.
Returns: the thumbprint value
/**
* Get the Radius client root certificate thumbprint.
*
* @return the thumbprint value
*/
public String thumbprint() {
return this.thumbprint;
}
Set the Radius client root certificate thumbprint.
Params: - thumbprint – the thumbprint value to set
Returns: the VpnServerConfigRadiusClientRootCertificate object itself.
/**
* Set the Radius client root certificate thumbprint.
*
* @param thumbprint the thumbprint value to set
* @return the VpnServerConfigRadiusClientRootCertificate object itself.
*/
public VpnServerConfigRadiusClientRootCertificate withThumbprint(String thumbprint) {
this.thumbprint = thumbprint;
return this;
}
}