summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
diff options
context:
space:
mode:
authorStone, Avi (as206k) <as206k@att.com>2018-04-12 15:46:31 +0300
committerStone, Avi (as206k) <as206k@att.com>2018-04-12 15:49:38 +0300
commit5032434b101f25fa44d2e1f8dc8393e30af1ed4f (patch)
tree2dc7d37a8048e025c7412af080640da4c9a22b65 /dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
parent2205633792f95f46a02bbf8f87f0c2637265d924 (diff)
DCAE-D be initial commit
DCAE-D be initial commit Issue-ID: SDC-1218 Change-Id: Id18ba96c499e785aa9ac395fbaf32d57f08c281b Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
Diffstat (limited to 'dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java')
-rw-r--r--dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java80
1 files changed, 80 insertions, 0 deletions
diff --git a/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java b/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
new file mode 100644
index 0000000..b630564
--- /dev/null
+++ b/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Target.java
@@ -0,0 +1,80 @@
+package org.onap.sdc.dcae.checker;
+
+import org.onap.sdc.common.onaplog.OnapLoggerDebug;
+import org.onap.sdc.common.onaplog.OnapLoggerError;
+
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.io.BufferedReader;
+import java.io.IOException;
+
+import java.net.URI;
+import java.net.URL;
+import java.net.MalformedURLException;
+
+/**
+ * Represents a yaml document to be parsed/validated/checked
+ */
+public class Target {
+
+ private static OnapLoggerError errLogger = OnapLoggerError.getInstance();
+ private static OnapLoggerDebug debugLogger = OnapLoggerDebug.getInstance();
+
+
+ private String name; //maintained mainly for logging
+ private URI location;
+ private Object target; //this is the parsed form of the target
+
+ private Report report = new Report(); //collects the errors related to this target
+
+ public Target(String theName, URI theLocation) {
+ this.name = theName;
+ this.location = theLocation;
+ }
+
+ public String getName() {
+ return this.name;
+ }
+
+ public URI getLocation() {
+ return this.location;
+ }
+
+ public Report getReport() {
+ return this.report;
+ }
+
+ public void report(Throwable theError) {
+ this.report.add(theError);
+ }
+
+ public void report(String theErrMsg) {
+ this.report.add(new Exception(theErrMsg));
+ }
+
+ public void setTarget(Object theTarget) {
+ this.target = theTarget;
+ }
+
+ public Object getTarget() {
+ return this.target;
+ }
+
+ /*
+ * @return a reader for the source or null if failed
+ */
+ public Reader open() throws IOException {
+
+ return new BufferedReader(
+ new InputStreamReader(
+ this.location.toURL().openStream()));
+ }
+
+ public String toString() {
+ //return String.format("Target %s (%.20s ...)", this.location, this.target == null ? "" : this.target.toString());
+ return String.format("Target %s at %s", this.name, this.location);
+
+ }
+}
+