Recovery handling
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / controllers / RicInfo.java
index 04e2cc5..cbb205c 100644 (file)
  * limitations under the License.
  * ========================LICENSE_END===================================
  */
-package org.oransc.policyagent.controllers;
 
-import com.google.gson.annotations.SerializedName;
+package org.oransc.policyagent.controllers;
 
-import java.util.Vector;
+import java.util.Collection;
 
 import org.immutables.gson.Gson;
 import org.immutables.value.Value;
@@ -30,9 +29,9 @@ import org.immutables.value.Value;
 @Gson.TypeAdapters
 interface RicInfo {
 
-    @SerializedName("name")
     public String name();
 
-    @SerializedName("nodeNames")
-    public Vector<String> managedElementIds();
+    public Collection<String> managedElementIds();
+
+    public Collection<String> policyTypes();
 }