Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / impl / ActivationRequestInformation.java
1 package org.openecomp.sdc.be.components.impl;
2
3 import org.openecomp.sdc.be.model.Service;
4
5 /**
6  * Created by chaya on 10/22/2017.
7  */
8 public class ActivationRequestInformation {
9     private Service serviceToActivate;
10     private String workloadContext;
11     private String tenant;
12
13     public ActivationRequestInformation(Service serviceToActivate, String workloadContext, String tenant) {
14         this.serviceToActivate = serviceToActivate;
15         this.workloadContext = workloadContext;
16         this.tenant = tenant;
17     }
18
19     public String getTenant() {
20         return tenant;
21     }
22
23     public void setTenant(String tenant) {
24         this.tenant = tenant;
25     }
26
27     public Service getServiceToActivate() {
28         return serviceToActivate;
29     }
30
31     public void setServiceToActivate(Service serviceToActivate) {
32         this.serviceToActivate = serviceToActivate;
33     }
34
35     public String getWorkloadContext() {
36         return workloadContext;
37     }
38
39     public void setWorkloadContext(String workloadContext) {
40         this.workloadContext = workloadContext;
41     }
42 }