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

no.difi.oxalis.commons.security.KeyStoreConf Maven / Gradle / Ivy

Go to download

Holds the stuff which is common for both inbound and outbound messages and should be shared between them.

There is a newer version: 4.1.2
Show newest version
package no.difi.oxalis.commons.security;

import no.difi.oxalis.api.settings.DefaultValue;
import no.difi.oxalis.api.settings.Path;
import no.difi.oxalis.api.settings.Secret;
import no.difi.oxalis.api.settings.Title;

/**
 * @author erlend
 * @since 4.0.0
 */
@Title("Key store")
public enum KeyStoreConf {

    @Path("oxalis.keystore.path")
    @DefaultValue("oxalis-keystore.jks")
    PATH,

    @Path("oxalis.keystore.password")
    @DefaultValue("changeit")
    @Secret
    PASSWORD,

    @Path("oxalis.keystore.key.alias")
    @DefaultValue("ap")
    KEY_ALIAS,

    @Path("oxalis.keystore.key.password")
    @DefaultValue("changeit")
    @Secret
    KEY_PASSWORD

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy