Move path logic to configuration (merger)
[oom/platform/cert-service.git] / trustStoreMerger / src / main / java / org / onap / oom / truststoremerger / configuration / path / PathValidator.java
  * ============LICENSE_END=========================================================
  */
 
-package org.onap.oom.truststoremerger.certification.path;
+package org.onap.oom.truststoremerger.configuration.path;
 
-public class PathValidator {
+class PathValidator {
 
     private static final String TRUSTSTORE_PATH_REGEX = "^(/[a-zA-Z0-9_-]+)+\\.(pem|jks|p12)";
     private static final String TRUSTSTORE_PASSWORD_PATH_REGEX = "^(/[a-zA-Z0-9_-]+)+\\.pass";
 
-    public boolean isTruststorePathValid(String truststorePath) {
+    boolean isTruststorePathValid(String truststorePath) {
         return isPathValid(truststorePath, TRUSTSTORE_PATH_REGEX);
     }
 
-    public boolean isTruststorePasswordPathValid(String truststorePasswordPath) {
+    boolean isTruststorePasswordPathValid(String truststorePasswordPath) {
         return truststorePasswordPath.isEmpty() || isPathValid(truststorePasswordPath, TRUSTSTORE_PASSWORD_PATH_REGEX);
     }