Update external query api with new query params
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / externalapi / servlet / representation / ServiceDistributionReqInfo.java
index 3abc621..109e49e 100644 (file)
  */
 package org.openecomp.sdc.be.externalapi.servlet.representation;
 
-/**
- * Created by chaya on 10/26/2017.
- */
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.Setter;
+
+@Setter
+@Getter
+@AllArgsConstructor
 public class ServiceDistributionReqInfo {
 
     private String workloadContext;
 
-    public ServiceDistributionReqInfo() {
-    }
-
-    public ServiceDistributionReqInfo(String workloadContext) {
-        this.workloadContext = workloadContext;
-    }
-
-    public String getWorkloadContext() {
-        return workloadContext;
-    }
-
-    public void setWorkloadContext(String workloadContext) {
-        this.workloadContext = workloadContext;
-    }
 }