From 575301836de2db0fec9206b040bab37d6c18db48 Mon Sep 17 00:00:00 2001
From: Joze RIHTARSIC <joze.rihtarsic@ext.ec.europa.eu>
Date: Wed, 28 Nov 2018 09:08:10 +0100
Subject: [PATCH] - add unit test for keystore - fix application resource
 attribute smlIntegration

---
 .../ec/edelivery/smp/data/ui/enums/SMPPropertyEnum.java   | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/smp-server-library/src/main/java/eu/europa/ec/edelivery/smp/data/ui/enums/SMPPropertyEnum.java b/smp-server-library/src/main/java/eu/europa/ec/edelivery/smp/data/ui/enums/SMPPropertyEnum.java
index 98a4294f7..2ccab4b17 100644
--- a/smp-server-library/src/main/java/eu/europa/ec/edelivery/smp/data/ui/enums/SMPPropertyEnum.java
+++ b/smp-server-library/src/main/java/eu/europa/ec/edelivery/smp/data/ui/enums/SMPPropertyEnum.java
@@ -11,9 +11,8 @@ public enum SMPPropertyEnum {
     CS_DOCUMENTS("identifiersBehaviour.caseSensitive.DocumentIdentifierSchemes","casesensitive-doc-scheme1|casesensitive-doc-scheme2","Specifies schemes of document identifiers that must be considered CASE-SENSITIVE."),
     SML_ENABLED("bdmsl.integration.enabled","false","BDMSL (SML) integration ON/OFF switch"),
     SML_URL("bdmsl.integration.url","http://localhost:8080/edelivery-sml/","BDMSL (SML) endpoint"),
-
-    SML_LOGICAL_ADDRESS("bdmsl.integration.logical.address","http://localhost:8080/smp/","BDMSL (SML) endpoint"),
-    SML_PHYSICAL_ADDRESS("bdmsl.integration.physical.address","0.0.0.0","BDMSL (SML) endpoint"),
+    SML_LOGICAL_ADDRESS("bdmsl.integration.logical.address","http://localhost:8080/smp/","Logical SMP endpoint which will be registered on SML when registering new domain"),
+    SML_PHYSICAL_ADDRESS("bdmsl.integration.physical.address","0.0.0.0","Physical SMP endpoint which will be registered on SML when registering new domain."),
 
     SML_PROXY_HOST("bdmsl.integration.proxy.server","","Proxy "),
     SML_PROXY_PORT("bdmsl.integration.proxy.port","","Proxy "),
@@ -23,15 +22,12 @@ public enum SMPPropertyEnum {
     KEYSTORE_FILENAME("smp.keystore.filename","smp-keystore.jks","keystore path "),
     CONFIGURATION_DIR("configuration.dir","","Path to the folder containing all the configuration files (keystore and sig0 key)"),
     ENCRYPTION_FILENAME("encryption.key.filename","encryptionPrivateKey.private","Path to the folder containing all the configuration files (keystore and sig0 key)"),
-
-
     KEYSTORE_PASSWORD_DECRYPTED("smp.keystore.password.decrypted","","Only for backup purposes. This password was automatically created. Store password somewhere save and delete this entry!"),
 
     SML_KEYSTORE_PASSWORD("bdmsl.integration.keystore.password","","Deprecated "),
     SML_KEYSTORE_PATH("bdmsl.integration.keystore.path","","Deprecated "),
     SIGNATURE_KEYSTORE_PASSWORD("xmldsig.keystore.password","","Deprecated "),
     SIGNATURE_KEYSTORE_PATH("xmldsig.keystore.classpath","","Deprecated "),
-
 ;
 
     String property;
-- 
GitLab