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

pl.edu.icm.unity.saml.sp.config.AdditionalCredential Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
/*
 * Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package pl.edu.icm.unity.saml.sp.config;

import eu.emi.security.authn.x509.X509Credential;

public class AdditionalCredential
{
	public final String name;
	public final X509Credential credential;

	public AdditionalCredential(String name, X509Credential credential)
	{
		this.name = name;
		this.credential = credential;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy