Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / externalapi / servlet / representation / ServiceDistributionReqInfo.java
1 package org.openecomp.sdc.be.externalapi.servlet.representation;
2
3 /**
4  * Created by chaya on 10/26/2017.
5  */
6 public class ServiceDistributionReqInfo {
7
8     private String workloadContext;
9
10     public ServiceDistributionReqInfo() {
11     }
12     public ServiceDistributionReqInfo(String workloadContext) {
13         this.workloadContext = workloadContext;
14     }
15
16     public String getWorkloadContext() {
17         return workloadContext;
18     }
19
20     public void setWorkloadContext(String workloadContext) {
21         this.workloadContext = workloadContext;
22     }
23 }