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

com.verisec.frejaeid.client.util.RequestTemplate Maven / Gradle / Ivy

package com.verisec.frejaeid.client.util;

public enum RequestTemplate {

    INIT_AUTHENTICATION("initAuthRequest={0}"),
    AUTHENTICATION_RESULT_TEMPLATE("getOneAuthResultRequest={0}"),
    AUTHENTICATION_RESULTS_TEMPLATE("getAuthResultsRequest={0}"),
    CANCEL_AUTHENTICATION_TEMPLATE("cancelAuthRequest={0}"),
    INIT_SIGN_TEMPLATE("initSignRequest={0}"),
    SIGN_RESULT_TEMPLATE("getOneSignResultRequest={0}"),
    SIGN_RESULTS_TEMPLATE("getSignResultsRequest={0}"),
    CANCEL_SIGN_TEMPLATE("cancelSignRequest={0}"),
    INIT_ADD_ORGANISATION_ID_TEMPLATE("initAddOrganisationIdRequest={0}"),
    ORGANISATION_ID_RESULT_TEMPLATE("getOneOrganisationIdResultRequest={0}"),
    DELETE_ORGANISATION_ID_TEMPLATE("deleteOrganisationIdRequest={0}"),
    CANCEL_ADD_ORGANISATION_ID_TEMPLATE("cancelAddOrganisationIdRequest={0}"),
    GET_ALL_ORGANISATION_ID_USERS_TEMPLATE("getAllOrganisationIdUsersRequest={0}"),
    UPDATE_ORGANISATION_ID_TEMPLATE("updateOrganisationIdRequest={0}"),
    RELYING_PARTY_ID("relyingPartyId={0}"),
    SET_CUSTOM_IDENTIFIER_TEMPLATE("setCustomIdentifierRequest={0}"),
    DELETE_CUSTOM_IDENTIFIER_TEMPLATE("deleteCustomIdentifierRequest={0}"),
    GET_CUSTODIANSHIP_STATUS_TEMPLATE("getCustodianshipStatusRequest={0}");

    private final String template;

    private RequestTemplate(String template) {
        this.template = template;
    }

    public String getTemplate() {
        return template;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy