aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/main/java/org/openecomp/sdc/be/model/PolicyTargetDTO.java
blob: 33a32d2624a5ea8f59b3295eb80d0e3b8c7290ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.openecomp.sdc.be.model;

import java.util.List;

public class PolicyTargetDTO {


    private String type;
    private List<String> uniqueIds;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public List<String> getUniqueIds() {
        return uniqueIds;
    }

    public void setUniqueIds(List<String> ids) {
        this.uniqueIds = ids;
    }





}