Class XAdESEncapsulatedPKIData
- java.lang.Object
-
- org.apache.camel.component.xmlsecurity.api.XAdESEncapsulatedPKIData
-
public class XAdESEncapsulatedPKIData extends Object
Class representing the Encapsulated PKI Data of the XAdES specification.
-
-
Constructor Summary
Constructors Constructor Description XAdESEncapsulatedPKIData(String base64Conent, String encoding, String id)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBase64Conent()Returns the base 64 encoded content.StringgetEncoding()Returns the character encoding of the content.StringgetId()
-
-
-
Constructor Detail
-
XAdESEncapsulatedPKIData
public XAdESEncapsulatedPKIData(String base64Conent, String encoding, String id)
Constructor- Parameters:
base64Conent- base64 encoded contentencoding- , can benullor empty; encoding http://uri.etsi.org/01903/v1.2.2#DER for denoting that the original PKI data were ASN.1 data encoded in DER. http://uri.etsi.org/01903/v1.2.2#BER for denoting that the original PKI data were ASN.1 data encoded in BER. http://uri.etsi.org/01903/v1.2.2#CER for denoting that the original PKI data were ASN.1 data encoded in CER. http://uri.etsi.org/01903/v1.2.2#PER for denoting that the original PKI data were ASN.1 data encoded in PER. http://uri.etsi.org/01903/v1.2.2#XER for denoting that the original PKI data were ASN.1 data encoded in XER.id- ID for the Id attribute, can benull- Throws:
IllegalArgumentException- if base64Conent isnullor empty
-
-