Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / components / distribution / engine / rest / DistributionStatusRequest.java
1 package org.openecomp.sdc.be.components.distribution.engine.rest;
2
3 /**
4  * a class which represents an MSO distribution status rest request body
5  */
6 public class DistributionStatusRequest {
7
8     private String status;
9     private String errorReason;
10
11     public DistributionStatusRequest(String status, String errorReason) {
12         this.status = status;
13         this.errorReason = errorReason;
14     }
15
16     public String getStatus() {
17         return status;
18     }
19
20     public String getErrorReason() {
21         return errorReason;
22     }
23 }