
io.github.mmm.crypto.asymmetric.cert.CertificatePath Maven / Gradle / Ivy
package io.github.mmm.crypto.asymmetric.cert;
import java.security.cert.Certificate;
import java.util.List;
/**
* Interface for a {@link java.security.cert.CertPath path} (also called chain) of
* {@link java.security.cert.Certificate}s.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
* @since 1.0.0
*/
public interface CertificatePath {
/**
* @return an {@link java.util.Collections#unmodifiableList(List) immutable} {@link List} of {@code Certificate}s.
*/
List getCertificates();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy