Add instructions to invoke the linter and code formatter plugins to the README and...
[aai/schema-service.git] / aai-schema-service / src / main / java / org / onap / aai / schemaservice / nodeschema / validation / VersionValidator.java
index 0158bc3..135bdcc 100644 (file)
@@ -8,7 +8,7 @@
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  *
- *    http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
@@ -17,6 +17,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.schemaservice.nodeschema.validation;
 
 import org.springframework.beans.factory.annotation.Autowired;
@@ -28,25 +29,25 @@ import org.springframework.stereotype.Component;
  */
 @Component
 public class VersionValidator {
-  private SchemaErrorStrategy strat;
-  private VersionValidationModule verMod;
-
-  @Autowired
-  public VersionValidator(SchemaErrorStrategy strategy, VersionValidationModule verMod) {
-    this.strat = strategy;
-    this.verMod = verMod;
-  }
+    private SchemaErrorStrategy strat;
+    private VersionValidationModule verMod;
 
-  public boolean validate() {
-    String result = verMod.validate();
-    if (!"".equals(result)) {
-      strat.notifyOnError(result);
+    @Autowired
+    public VersionValidator(SchemaErrorStrategy strategy, VersionValidationModule verMod) {
+        this.strat = strategy;
+        this.verMod = verMod;
     }
 
-    return strat.isOK();
-  }
+    public boolean validate() {
+        String result = verMod.validate();
+        if (!"".equals(result)) {
+            strat.notifyOnError(result);
+        }
 
-  public String getErrorMsg() {
-    return strat.getErrorMsg();
-  }
+        return strat.isOK();
+    }
+
+    public String getErrorMsg() {
+        return strat.getErrorMsg();
+    }
 }