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

io.descoped.dc.api.security.BusinessSSLResource Maven / Gradle / Ivy

The newest version!
package io.descoped.dc.api.security;

import java.util.Objects;

public interface BusinessSSLResource extends AutoCloseable {

    String bundleName();

    String getType();

    char[] publicCertificate();

    char[] privateCertificate();

    byte[] archiveCertificate();

    char[] passphrase();

    @Override
    void close();

    default boolean isPEM() {
        Objects.requireNonNull(getType());
        return "pem".equalsIgnoreCase(getType());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy