Package eu.europa.esig.dss.enumerations
Enum MRAEquivalenceContext
- java.lang.Object
-
- java.lang.Enum<MRAEquivalenceContext>
-
- eu.europa.esig.dss.enumerations.MRAEquivalenceContext
-
- All Implemented Interfaces:
UriBasedEnum,Serializable,Comparable<MRAEquivalenceContext>
public enum MRAEquivalenceContext extends Enum<MRAEquivalenceContext> implements UriBasedEnum
It identifies the context of the machine processable declarative statement whose reference implementation(s) used by the pointing contracting party is (are) declared in the CertificateContentDeclarationPointingParty element and whose equivalent implementation(s) used by the pointed contracting party is (are) declared in the CertificateContentDeclarationPointedParty element.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description QC_COMPLIANCEIndicate that the CertificateContentReferenceEquivalence element applies to the context of mapping the respective pointing party and pointed party reference machine processable statement(s) included in a certificate to declare (as a statement made by the issuing TSP) and to confirm (as a benchmark for establishing the content of the corresponding TL trust service entry) that it has been issued as a qualified certificate.QC_QSCDIndicate that the CertificateContentReferenceEquivalence element applies to the context of mapping the respective pointing party and pointed party reference machine processable statement(s) included in a certificate to declare (as a statement made by the issuing TSP) and to confirm (as a benchmark for establishing the content of the corresponding TL trust service entry) that the private key, to which the certified public key corresponds, resides in an EU qualified electronic signature or seal creation device.QC_TYPEIndicate that the CertificateContentReferenceEquivalence element applies to the context of mapping the respective pointing party and pointed party reference machine processable statement(s) included in a certificate to declare (as a statement made by the issuing TSP) and to confirm (as a benchmark for establishing the content of the corresponding TL trust service entry) that it has been issued for a certain usage type (i.e.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetUri()Returns a URIstatic MRAEquivalenceContextvalueOf(String name)Returns the enum constant of this type with the specified name.static MRAEquivalenceContext[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QC_COMPLIANCE
public static final MRAEquivalenceContext QC_COMPLIANCE
Indicate that the CertificateContentReferenceEquivalence element applies to the context of mapping the respective pointing party and pointed party reference machine processable statement(s) included in a certificate to declare (as a statement made by the issuing TSP) and to confirm (as a benchmark for establishing the content of the corresponding TL trust service entry) that it has been issued as a qualified certificate.
-
QC_TYPE
public static final MRAEquivalenceContext QC_TYPE
Indicate that the CertificateContentReferenceEquivalence element applies to the context of mapping the respective pointing party and pointed party reference machine processable statement(s) included in a certificate to declare (as a statement made by the issuing TSP) and to confirm (as a benchmark for establishing the content of the corresponding TL trust service entry) that it has been issued for a certain usage type (i.e. for electronic signatures, for electronic seals, or for website authentication).
-
QC_QSCD
public static final MRAEquivalenceContext QC_QSCD
Indicate that the CertificateContentReferenceEquivalence element applies to the context of mapping the respective pointing party and pointed party reference machine processable statement(s) included in a certificate to declare (as a statement made by the issuing TSP) and to confirm (as a benchmark for establishing the content of the corresponding TL trust service entry) that the private key, to which the certified public key corresponds, resides in an EU qualified electronic signature or seal creation device.
-
-
Method Detail
-
values
public static MRAEquivalenceContext[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MRAEquivalenceContext c : MRAEquivalenceContext.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MRAEquivalenceContext valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getUri
public String getUri()
Description copied from interface:UriBasedEnumReturns a URI- Specified by:
getUriin interfaceUriBasedEnum- Returns:
String
-
-