summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/externalapi/servlet/representation/ServiceDistributionReqInfo.java
blob: 5557c7a60930ffc01cf74a9c87c90f533a12bc8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openecomp.sdc.be.externalapi.servlet.representation;

/**
 * Created by chaya on 10/26/2017.
 */
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;
    }
}