Sync Integ to Master
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / PolicyTargetDTO.java
1 package org.openecomp.sdc.be.model;
2
3 import java.util.List;
4
5 public class PolicyTargetDTO {
6
7
8     private String type;
9     private List<String> uniqueIds;
10
11     public String getType() {
12         return type;
13     }
14
15     public void setType(String type) {
16         this.type = type;
17     }
18
19     public List<String> getUniqueIds() {
20         return uniqueIds;
21     }
22
23     public void setUniqueIds(List<String> ids) {
24         this.uniqueIds = ids;
25     }
26
27
28
29
30
31 }