Package org.somda.sdc.dpws.crypto
Interface CryptoSettings
-
public interface CryptoSettingsCommon interface to retrieve key and trust store information.Key and trust store information can be referenced using streams (
getKeyStoreStream(),getKeyStoreStream()).- See Also:
- More information on key and trust stores
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetKeyStorePassword()Optional<InputStream>getKeyStoreStream()StringgetTrustStorePassword()Optional<InputStream>getTrustStoreStream()
-
-
-
Method Detail
-
getKeyStoreStream
Optional<InputStream> getKeyStoreStream()
-
getKeyStorePassword
String getKeyStorePassword()
-
getTrustStoreStream
Optional<InputStream> getTrustStoreStream()
-
getTrustStorePassword
String getTrustStorePassword()
-
-