Added support for EiJob status
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / EiJob.java
index bb880e7..95bbc03 100644 (file)
@@ -24,7 +24,7 @@ import org.immutables.gson.Gson;
 import org.immutables.value.Value;
 
 /**
- * Represents the dynamic information about a EI Job
+ * Represents the dynamic information about a EI job
  */
 @Value.Immutable
 @Gson.TypeAdapters
@@ -32,11 +32,13 @@ public interface EiJob {
 
     String id();
 
-    EiType type();
+    String typeId();
 
     String owner();
 
     Object jobData();
 
-    String targetUri();
+    String targetUrl();
+
+    String jobStatusUrl();
 }