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

uk.gov.ida.saml.hub.transformers.inbound.SamlStatusToAuthenticationStatusCodeMapper Maven / Gradle / Ivy

There is a newer version: 3.4.6-15872
Show newest version
package uk.gov.ida.saml.hub.transformers.inbound;

import org.opensaml.saml.saml2.core.Status;

import java.util.Optional;

public abstract class SamlStatusToAuthenticationStatusCodeMapper {

    public abstract Optional map(Status samlStatus);

    protected String getStatusCodeValue(final Status status) {
        return status.getStatusCode().getValue();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy