Package org.wildfly.security.x500
Class GeneralName.DNSName
- java.lang.Object
-
- org.wildfly.security.x500.GeneralName
-
- org.wildfly.security.x500.GeneralName.DNSName
-
- All Implemented Interfaces:
ASN1Encodable
- Enclosing class:
- GeneralName
public static final class GeneralName.DNSName extends GeneralName
A DNS name.- Author:
- Farah Juma
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.wildfly.security.x500.GeneralName
GeneralName.DirectoryName, GeneralName.DNSName, GeneralName.EDIPartyName, GeneralName.IPAddress, GeneralName.OtherName, GeneralName.RegisteredID, GeneralName.RFC822Name, GeneralName.URIName, GeneralName.X400Address
-
-
Field Summary
Fields Modifier and Type Field Description private String
name
-
Fields inherited from class org.wildfly.security.x500.GeneralName
DIRECTORY_NAME, DNS_NAME, EDI_PARTY_NAME, IP_ADDRESS, OTHER_NAME, REGISTERED_ID, RFC_822_NAME, URI_NAME, X400_ADDRESS
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
encodeTo(ASN1Encoder encoder)
Encode thisGeneralName
element using the given ASN.1 encoder, whereGeneralName
is defined as:boolean
equals(Object obj)
boolean
equals(GeneralName.DNSName other)
String
getName()
Get the name.int
hashCode()
-
Methods inherited from class org.wildfly.security.x500.GeneralName
getType
-
-
-
-
Field Detail
-
name
private final String name
-
-
Constructor Detail
-
DNSName
public DNSName(String name)
Create a DNS name.- Parameters:
name
- the DNS name, as aString
-
-
Method Detail
-
getName
public String getName()
Description copied from class:GeneralName
Get the name.- Specified by:
getName
in classGeneralName
- Returns:
- the name
-
encodeTo
public void encodeTo(ASN1Encoder encoder)
Description copied from class:GeneralName
Encode this
GeneralName
element using the given ASN.1 encoder, whereGeneralName
is defined as:GeneralName ::= CHOICE { otherName [0] OtherName, rfc822Name [1] IA5String, dNSName [2] IA5String, x400Address [3] ORAddress, directoryName [4] Name, ediPartyName [5] EDIPartyName, uniformResourceIdentifier [6] IA5String, iPAddress [7] OCTET STRING, registeredID [8] OBJECT IDENTIFIER }
- Specified by:
encodeTo
in interfaceASN1Encodable
- Specified by:
encodeTo
in classGeneralName
- Parameters:
encoder
- the encoder (must not benull
)
-
equals
public boolean equals(GeneralName.DNSName other)
-
-