no.difi.oxalis.commons.security.KeyStoreConf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oxalis-commons Show documentation
Show all versions of oxalis-commons Show documentation
Holds the stuff which is common for both inbound and outbound messages and should be shared between them.
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