Class SubjectAlternativeNames
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.SubjectAlternativeNames
-
public class SubjectAlternativeNames extends Object
The subject alternate names of a X509 object.
-
-
Constructor Summary
Constructors Constructor Description SubjectAlternativeNames()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
dnsNames()
Get the dnsNames value.List<String>
emails()
Get the emails value.List<String>
upns()
Get the upns value.SubjectAlternativeNames
withDnsNames(List<String> dnsNames)
Set the dnsNames value.SubjectAlternativeNames
withEmails(List<String> emails)
Set the emails value.SubjectAlternativeNames
withUpns(List<String> upns)
Set the upns value.
-
-
-
Method Detail
-
withEmails
public SubjectAlternativeNames withEmails(List<String> emails)
Set the emails value.- Parameters:
emails
- the emails value to set- Returns:
- the SubjectAlternativeNames object itself.
-
withDnsNames
public SubjectAlternativeNames withDnsNames(List<String> dnsNames)
Set the dnsNames value.- Parameters:
dnsNames
- the dnsNames value to set- Returns:
- the SubjectAlternativeNames object itself.
-
withUpns
public SubjectAlternativeNames withUpns(List<String> upns)
Set the upns value.- Parameters:
upns
- the upns value to set- Returns:
- the SubjectAlternativeNames object itself.
-
-