Improve test coverage
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / impl / ActivationRequestInformation.java
index 87ef16f..26ded1f 100644 (file)
  */
 package org.openecomp.sdc.be.components.impl;
 
+import lombok.Data;
 import org.openecomp.sdc.be.model.Service;
 
 /**
  * Created by chaya on 10/22/2017.
  */
+@Data
 public class ActivationRequestInformation {
 
     private Service serviceToActivate;
@@ -35,28 +37,4 @@ public class ActivationRequestInformation {
         this.workloadContext = workloadContext;
         this.tenant = tenant;
     }
-
-    public String getTenant() {
-        return tenant;
-    }
-
-    public void setTenant(String tenant) {
-        this.tenant = tenant;
-    }
-
-    public Service getServiceToActivate() {
-        return serviceToActivate;
-    }
-
-    public void setServiceToActivate(Service serviceToActivate) {
-        this.serviceToActivate = serviceToActivate;
-    }
-
-    public String getWorkloadContext() {
-        return workloadContext;
-    }
-
-    public void setWorkloadContext(String workloadContext) {
-        this.workloadContext = workloadContext;
-    }
 }