aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java')
-rw-r--r--catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java b/catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java
new file mode 100644
index 0000000000..28621bcb41
--- /dev/null
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/dto/ExternalRefDTO.java
@@ -0,0 +1,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;
+ }
+}