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

io.hawt.keystore.SecurityProviderDTO Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.hawt.keystore;

import java.util.Arrays;

/**
 * @author Hiram Chirino
 */
public class SecurityProviderDTO {

    public String supportedKeyStoreTypes[];
    public String supportedKeyAlgorithms[];

    @Override
    public String toString() {
        return "SecurityProviderDTO{" +
                "supportedKeyAlgorithms=" + Arrays.toString(supportedKeyAlgorithms) +
                ", supportedKeyStoreTypes=" + Arrays.toString(supportedKeyStoreTypes) +
                '}';
    }

    public String[] getSupportedKeyAlgorithms() {
        return supportedKeyAlgorithms;
    }

    public void setSupportedKeyAlgorithms(String[] supportedKeyAlgorithms) {
        this.supportedKeyAlgorithms = supportedKeyAlgorithms;
    }

    public String[] getSupportedKeyStoreTypes() {
        return supportedKeyStoreTypes;
    }

    public void setSupportedKeyStoreTypes(String[] supportedKeyStoreTypes) {
        this.supportedKeyStoreTypes = supportedKeyStoreTypes;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy