All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gravitee.am.model.Template Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * 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 io.gravitee.am.model;

import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

/**
 * @author Titouan COMPIEGNE (titouan.compiegne at graviteesource.com)
 * @author GraviteeSource Team
 */
public enum Template {

    LOGIN("login", "/login"),
    REGISTRATION("registration", "/register"),
    REGISTRATION_CONFIRMATION("registration_confirmation", "/confirmRegistration"),
    FORGOT_PASSWORD("forgot_password", "/forgotPassword"),
    RESET_PASSWORD("reset_password", "/resetPassword"),
    OAUTH2_USER_CONSENT("oauth2_user_consent", "/oauth/confirm_access"),
    MFA_ENROLL("mfa_enroll", "/mfa/enroll"),
    MFA_CHALLENGE("mfa_challenge", "/mfa/challenge"),
    MFA_CHALLENGE_ALTERNATIVES("mfa_challenge_alternatives", "/mfa/challenge/alternatives"),
    MFA_RECOVERY_CODE("mfa_recovery_code", "/mfa/recovery_code"),
    BLOCKED_ACCOUNT("blocked_account", "/resetPassword"),
    COMPLETE_PROFILE("complete_profile", "/completeProfile"),
    WEBAUTHN_REGISTER("webauthn_register", "/webauthn/register"),
    WEBAUTHN_LOGIN("webauthn_login", "/webauthn/login"),
    IDENTIFIER_FIRST_LOGIN("identifier_first_login", "/login/identifier"),
    ERROR("error", "/error"),
    CERTIFICATE_EXPIRATION("certificate_expiration", null),
    VERIFY_ATTEMPT("verify_attempt",null);

    private final String template;
    private final String redirectUri;

    Template(String template, String redirectUri) {
        this.template = template;
        this.redirectUri = redirectUri;
    }

    public String template() {
        return template;
    }

    public String redirectUri() {
        return redirectUri;
    }

    public static Template parse(String toParse) {
        if (toParse == null || toParse.trim().isEmpty()) {
            throw new IllegalArgumentException("template must not be null");
        }
        List