com.nimbusds.openid.connect.sdk.assurance.IdentityTrustFramework Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
/*
* oauth2-oidc-sdk
*
* Copyright 2012-2016, Connect2id Ltd and contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.nimbusds.openid.connect.sdk.assurance;
import net.jcip.annotations.Immutable;
import com.nimbusds.oauth2.sdk.id.Identifier;
/**
* Identity trust framework identifiers.
*
* Related specifications:
*
*
* - OpenID Connect for Identity Assurance 1.0, section 5.1.
*
*/
@Immutable
public final class IdentityTrustFramework extends Identifier {
private static final long serialVersionUID = 378614456182831323L;
/**
* The OP verifies and maintains user identities in conformance with
* the German Anti-Money Laundering Law.
*/
public static final IdentityTrustFramework DE_AML = new IdentityTrustFramework("de_aml");
/**
* The OP is able to attest user identities in accordance with the EU
* regulation No 910/2014 (eIDAS).
*/
public static final IdentityTrustFramework EIDAS = new IdentityTrustFramework("eidas");
/**
* The OP is able to attest user identities in accordance with the EU
* regulation No 910/2014 (eIDAS) at the identification assurance
* level "Substantial".
*/
@Deprecated
public static final IdentityTrustFramework EIDAS_IAL_SUBSTANTIAL = new IdentityTrustFramework("eidas_ial_substantial");
/**
* The OP is able to attest user identities in accordance with the EU
* regulation No 910/2014 (eIDAS) at the identification assurance
* level "High".
*/
@Deprecated
public static final IdentityTrustFramework EIDAS_IAL_HIGH = new IdentityTrustFramework("eidas_ial_high");
/**
* The OP is able to attest user identities in accordance with the NIST
* Special Publication 800-63A.
*/
public static final IdentityTrustFramework NIST_800_63A = new IdentityTrustFramework("nist_800_63A");
/**
* The OP is able to attest user identities in accordance with the NIST
* Special Publication 800-63A at the Identity Assurance Level 2.
*/
@Deprecated
public static final IdentityTrustFramework NIST_800_63A_IAL_2 = new IdentityTrustFramework("nist_800_63A_ial_2");
/**
* The OP is able to attest user identities in accordance with the NIST
* Special Publication 800-63A at the Identity Assurance Level 3.
*/
@Deprecated
public static final IdentityTrustFramework NIST_800_63A_IAL_3 = new IdentityTrustFramework("nist_800_63A_ial_3");
/**
* The OP verifies and maintains user identities in conformance with
* the Japanese Act on Prevention of Transfer of Criminal Proceeds.
*/
public static final IdentityTrustFramework JP_AML = new IdentityTrustFramework("jp_aml");
/**
* The OP verifies and maintains user identities in conformance with
* the Japanese Act for Identification, etc. by Mobile Voice
* Communications Carriers of Their Subscribers, etc. and for
* Prevention of Improper Use of Mobile Voice Communications Services.
*/
public static final IdentityTrustFramework JP_MPIUPA = new IdentityTrustFramework("jp_mpiupa");
/**
* The OP verifies and maintains user identities in conformance with
* the Czech Anti-Money Laundering Law.
*/
public static final IdentityTrustFramework CZ_AML = new IdentityTrustFramework("cz_aml");
/**
* The OP verifies and maintains user identities in conforms with the
* German Telecommunications Law (here §111).
*/
public static final IdentityTrustFramework DE_TKG111 = new IdentityTrustFramework("de_tkg111");
/**
* The OP verifies and maintains user identities in conformance with
* the Belgian law on electronic identification.
*/
public static final IdentityTrustFramework BE_ITSME = new IdentityTrustFramework("be_itsme");
/**
* The OP verifies and maintains user identities in conformance with
* the requirements of the Swedish e-ID.
*/
public static final IdentityTrustFramework SE_BANKID = new IdentityTrustFramework("se_bankid");
/**
* The OP is accredited by the Agency for Digital Italy as an identity
* provider in the Public Digital Identity System (SPID).
*/
public static final IdentityTrustFramework IT_SPID = new IdentityTrustFramework("it_spid");
/**
* The OP is accredited as an identity provider in the Dutch Trust
* Framework for Electronic Identification.
*/
public static final IdentityTrustFramework NL_EHERKENNING = new IdentityTrustFramework("nl_eHerkenning");
/**
* The OP is certified as an identity service provider in the UK trust
* framework for digital identity and attributes.
*/
public static final IdentityTrustFramework UK_TFIDA = new IdentityTrustFramework("uk_tfida");
/**
* The OP is accredited as an identity service provider under the AU
* Trusted Digital Identity Framework.
*/
public static final IdentityTrustFramework AU_TDIF = new IdentityTrustFramework("au_tdif");
/**
* Creates a new identity trust framework.
*
* @param value The identity trust framework value. Must not be
* {@code null}.
*/
public IdentityTrustFramework(final String value) {
super(value);
}
@Override
public boolean equals(final Object object) {
return object instanceof IdentityTrustFramework &&
this.toString().equals(object.toString());
}
}