re base code
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / info / DistributionStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.info;
22
23 import org.openecomp.sdc.common.log.wrappers.Logger;
24
25 public enum DistributionStatus {
26     DEPLOYED("Deployed", "DEPLOYED");
27
28     private String name;
29     private String auditingStatus;
30
31     private static final Logger log = Logger.getLogger(DistributionStatus.class);
32
33     DistributionStatus(String name, String auditingStatus) {
34         this.name = name;
35         this.auditingStatus = auditingStatus;
36     }
37
38     public String getName() {
39         return name;
40     }
41
42     public String getAuditingStatus() {
43         return auditingStatus;
44     }
45
46     public static DistributionStatus getStatusByAuditingStatusName(String auditingStatus) {
47         DistributionStatus res = null;
48         DistributionStatus[] values = values();
49         for (DistributionStatus value : values) {
50             if (value.getAuditingStatus().equals(auditingStatus)) {
51                 res = value;
52                 break;
53             }
54         }
55         if (res == null) {
56             log.debug("No DistributionStatus  is mapped to name {}", auditingStatus);
57         }
58         return res;
59     }
60
61 }