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

uk.gov.ida.saml.metadata.domain.MetadataSigningTrustedCertificates Maven / Gradle / Ivy

There is a newer version: 3.4.6-277
Show newest version
package uk.gov.ida.saml.metadata.domain;

import java.security.cert.X509Certificate;
import java.util.List;

public class MetadataSigningTrustedCertificates {
    private List certificates;

    public MetadataSigningTrustedCertificates(List certificates) {
        this.certificates = certificates;
    }

    public List getCertificates() {
        return certificates;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy