Uses of Class
org.wildfly.security.x500.GeneralName
-
Packages that use GeneralName Package Description org.wildfly.security.sasl.entity org.wildfly.security.x500 Package containing X.500 representations.org.wildfly.security.x500.cert Package containing APIs for generating certificates and certificate signing requests. -
-
Uses of GeneralName in org.wildfly.security.sasl.entity
Methods in org.wildfly.security.sasl.entity that return GeneralName Modifier and Type Method Description private static GeneralName
EntityUtil. convertToGeneralName(List<?> generalName)
Methods in org.wildfly.security.sasl.entity that return types with arguments of type GeneralName Modifier and Type Method Description private static List<GeneralName>
EntityUtil. convertToGeneralNames(Collection<List<?>> generalNames)
static List<GeneralName>
EntityUtil. decodeGeneralNames(DERDecoder decoder)
Decode the next element from the given DER decoder as aGeneralNames
element.Methods in org.wildfly.security.sasl.entity with parameters of type GeneralName Modifier and Type Method Description static void
EntityUtil. encodeGeneralNames(DEREncoder encoder, GeneralName generalName)
Encode aGeneralNames
element consisting of one general name using the given DER encoder.static boolean
EntityUtil. matchGeneralName(GeneralName generalName, GeneralName actualGeneralName)
Method parameters in org.wildfly.security.sasl.entity with type arguments of type GeneralName Modifier and Type Method Description static void
EntityUtil. encodeGeneralNames(DEREncoder encoder, List<GeneralName> generalNames)
Encode aGeneralNames
element using the given DER encoder, whereGeneralNames
is defined as:static String
EntityUtil. getDistinguishedNameFromGeneralNames(List<GeneralName> generalNames)
static boolean
EntityUtil. matchGeneralNames(List<GeneralName> generalNames, X509Certificate cert)
static boolean
EntityUtil. matchGeneralNames(List<GeneralName> generalNames, List<GeneralName> actualGeneralNames)
-
Uses of GeneralName in org.wildfly.security.x500
Subclasses of GeneralName in org.wildfly.security.x500 Modifier and Type Class Description static class
GeneralName.DirectoryName
A directory name.static class
GeneralName.DNSName
A DNS name.static class
GeneralName.EDIPartyName
An EDI party name.static class
GeneralName.IPAddress
An IP address.static class
GeneralName.OtherName
A generic name.static class
GeneralName.RegisteredID
A registered ID name.static class
GeneralName.RFC822Name
An RFC 822 name.static class
GeneralName.URIName
A URI name.static class
GeneralName.X400Address
An X.400 address. -
Uses of GeneralName in org.wildfly.security.x500.cert
Fields in org.wildfly.security.x500.cert declared as GeneralName Modifier and Type Field Description private GeneralName
AccessDescription. accessLocation
private GeneralName
NameConstraintsExtension.GeneralSubtree. base
Fields in org.wildfly.security.x500.cert with type parameters of type GeneralName Modifier and Type Field Description private List<GeneralName>
CRLDistributionPoint. crlIssuer
private List<GeneralName>
CRLDistributionPoint.FullNameDistributionPointName. fullName
private List<GeneralName>
AuthorityKeyIdentifierExtension. generalNames
private List<GeneralName>
IssuerAlternativeNamesExtension. issuerAlternativeNames
private List<GeneralName>
SubjectAlternativeNamesExtension. subjectAlternativeNames
Methods in org.wildfly.security.x500.cert that return GeneralName Modifier and Type Method Description private static GeneralName
CertUtil. getGeneralName(String typeAndValue)
Methods in org.wildfly.security.x500.cert that return types with arguments of type GeneralName Modifier and Type Method Description private static List<GeneralName>
CertUtil. getGeneralNames(String extensionValue)
Constructors in org.wildfly.security.x500.cert with parameters of type GeneralName Constructor Description AccessDescription(String accessMethodId, GeneralName accessLocation)
Construct a new instance.GeneralSubtree(GeneralName base, int minimumDistance, int maximumDistance)
Construct a new instance.Constructor parameters in org.wildfly.security.x500.cert with type arguments of type GeneralName Constructor Description AuthorityKeyIdentifierExtension(byte[] keyIdentifier, List<GeneralName> generalNames, BigInteger serialNumber)
Construct a new instance.CRLDistributionPoint(CRLDistributionPoint.DistributionPointName distributionPoint, EnumSet<CRLReason> reasons, List<GeneralName> crlIssuer)
Construct a new instance.FullNameDistributionPointName(List<GeneralName> fullName)
Construct a new instance.IssuerAlternativeNamesExtension(boolean critical, List<GeneralName> issuerAlternativeNames)
Construct a new instance.SubjectAlternativeNamesExtension(boolean critical, List<GeneralName> subjectAlternativeNames)
Construct a new instance.
-