public class SslCertificate.DName
extends Object
java.lang.Object | |
↳ | android.net.http.SslCertificate.DName |
一个可分辨的名称助手类:一个三元组:
Public constructors |
|
---|---|
SslCertificate.DName(String dName) 从字符串创建一个新的 |
Public methods |
|
---|---|
String |
getCName() |
String |
getDName() |
String |
getOName() |
String |
getUName() |
Inherited methods |
|
---|---|
From class java.lang.Object
|
SslCertificate.DName (String dName)
从字符串创建一个新的DName
。 这些属性被假定为以最重要到最不重要的顺序出现,这对于由诸如X500Principal.getName()
等方法返回的人类可读值是正确的。 请注意,诸如X509Certificate
实例的可分辨名称的基础源按照最重要的顺序编码,因此请确保此处传递的值具有预期的属性排序。
Parameters | |
---|---|
dName |
String
|
String getCName ()
Returns | |
---|---|
String |
The most specific Common-name (CN) component of this name |
String getDName ()
Returns | |
---|---|
String |
The distinguished name (normally includes CN, O, and OU names) |
String getOName ()
Returns | |
---|---|
String |
The most specific Organization (O) component of this name |
String getUName ()
Returns | |
---|---|
String |
The most specific Organizational Unit (OU) component of this name |