Realize the PNF registration API
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / PnfList.java
@@ -19,18 +19,18 @@ import java.io.Serializable;
 import java.util.List;
 import com.google.gson.annotations.SerializedName;
 
-public class EsrPnfList implements Serializable{
+public class PnfList implements Serializable{
 
     public static final long serialVersionUID = 1L;
 
     @SerializedName("pnf")
-    private List<EsrPnf> pnf;
+    private List<Pnf> pnf;
 
-    public List<EsrPnf> getPnf() {
+    public List<Pnf> getPnf() {
         return pnf;
     }
 
-    public void setPnf(List<EsrPnf> pnf) {
+    public void setPnf(List<Pnf> pnf) {
         this.pnf = pnf;
     }
 }