Create get Pdp Groups flow
[clamp.git] / src / main / java / org / onap / clamp / policy / Policy.java
index e1c08ee..cce9e56 100644 (file)
@@ -68,6 +68,10 @@ public abstract class Policy extends AuditEntity {
     @Column(name = "pdp_group")
     private String pdpGroup;
 
+    @Expose
+    @Column(name = "pdp_sub_group")
+    private String pdpSubGroup;
+
     public abstract String createPolicyPayload() throws UnsupportedEncodingException;
 
     /**
@@ -154,6 +158,24 @@ public abstract class Policy extends AuditEntity {
         this.pdpGroup = pdpGroup;
     }
 
+    /**
+     * pdpSubGroup getter.
+     * 
+     * @return the pdpSubGroup
+     */
+    public String getPdpSubGroup() {
+        return pdpSubGroup;
+    }
+
+    /**
+     * pdpSubGroup setter.
+     * 
+     * @param pdpSubGroup the pdpSubGroup to set
+     */
+    public void setPdpSubGroup(String pdpSubGroup) {
+        this.pdpSubGroup = pdpSubGroup;
+    }
+
     /**
      * Generate the policy name.
      *