Transformation of request/response payloads for SDC Integration for POST /serviceSpec...
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / servicecatalog / model / DistributionStatus.java
1 /*
2  * ============LICENSE_START=============================================================================================================
3  * Copyright (c) 2020 <rakeshgirijaramesannair>
4  * ===================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
6  *
7  *        http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
10  * OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
11  * ============LICENSE_END===============================================================================================================
12  *
13  */
14
15
16 package org.onap.nbi.apis.servicecatalog.model;
17
18
19 /**
20  * Service distribution status from ONAP.
21  *
22  */
23
24 public enum DistributionStatus {
25   
26   DISTRIBUTION_NOT_APPROVED("DISTRIBUTION_NOT_APPROVED"),
27   
28   DISTRIBUTION_APPROVED("DISTRIBUTION_APPROVED"),
29   
30   DISTRIBUTED("DISTRIBUTED"),
31   
32   DISTRIBUTION_REJECTED("DISTRIBUTION_REJECTED");
33
34   private String value;
35
36   DistributionStatus(String value) {
37     this.value = value;
38   }
39
40   public String getValue() {
41     return value;
42   }
43
44 }
45