aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ActivationRequestInformation.java
blob: e0a85330525a24aabdde7505f876860e2ae2460b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package org.openecomp.sdc.be.components.impl;

import org.openecomp.sdc.be.model.Service;

/**
 * Created by chaya on 10/22/2017.
 */
public class ActivationRequestInformation {
    private Service serviceToActivate;
    private String workloadContext;
    private String tenant;

    public ActivationRequestInformation(Service serviceToActivate, String workloadContext, String tenant) {
        this.serviceToActivate = serviceToActivate;
        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;
    }
}