NONRTRIC - ECS updates of the NBI
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / InfoType.java
@@ -22,14 +22,14 @@ package org.oransc.enrichment.repository;
 
 import lombok.Getter;
 
-public class EiType {
+public class InfoType {
     @Getter
     private final String id;
 
     @Getter
     private final Object jobDataSchema;
 
-    public EiType(String id, Object jobDataSchema) {
+    public InfoType(String id, Object jobDataSchema) {
         this.id = id;
         this.jobDataSchema = jobDataSchema;
     }