aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java
blob: 28621bcb4193c32bc996d94db6a047abdf309304 (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
package org.openecomp.sdc.be.dto;

/**
 * Created by yavivi on 18/02/2018.
 */
public class ExternalRefDTO {
    private String referenceUUID;

    public ExternalRefDTO(){
        //Empty constructor for serialization purposes
    }

    public ExternalRefDTO(String ref){
        this.referenceUUID = ref;
    }

    public String getReferenceUUID() {
        return referenceUUID;
    }

    public void setReferenceUUID(String referenceUUID) {
        this.referenceUUID = referenceUUID;
    }

    @Override
    public String toString() {
        return this.referenceUUID;
    }
}