Package org.wildfly.security.x500.cert
Class ExtendedKeyUsageExtension
- java.lang.Object
 - 
- org.wildfly.security.x500.cert.X509CertificateExtension
 - 
- org.wildfly.security.x500.cert.ExtendedKeyUsageExtension
 
 
 
- 
- All Implemented Interfaces:
 Extension,ASN1Encodable
public final class ExtendedKeyUsageExtension extends X509CertificateExtension
An extended key usage extension as defined by RFC 5280 ยง 4.2.1.12.- Author:
 - David M. Lloyd
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ExtendedKeyUsageExtension(boolean critical, List<String> keyPurposeIds)Construct a new instance. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidencodeTo(ASN1Encoder encoder)Encode this object.StringgetId()Get the OID of this extension.- 
Methods inherited from class org.wildfly.security.x500.cert.X509CertificateExtension
encode, getValue, isCritical 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ExtendedKeyUsageExtension
public ExtendedKeyUsageExtension(boolean critical, List<String> keyPurposeIds)Construct a new instance. The key purpose OIDs should typically be chosen from theX500.OID_KP_*constants.- Parameters:
 critical-trueto mark this extension as critical,falseto mark it as non-criticalkeyPurposeIds- the key purpose OIDs list (must not benullor empty)
 
 - 
 
- 
Method Detail
- 
getId
public String getId()
Description copied from class:X509CertificateExtensionGet the OID of this extension.- Specified by:
 getIdin interfaceExtension- Specified by:
 getIdin classX509CertificateExtension- Returns:
 - the OID of this extension (must not be 
null) 
 
- 
encodeTo
public void encodeTo(ASN1Encoder encoder)
Description copied from interface:ASN1EncodableEncode this object.- Parameters:
 encoder- the encoder (must not benull)
 
 - 
 
 -