Catalog alignment
[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  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22
23 package org.openecomp.sdc.be.info;
24
25 import org.openecomp.sdc.common.log.wrappers.Logger;
26
27 import java.util.Arrays;
28 import java.util.Optional;
29
30 public enum DistributionStatus {
31     DEPLOYED("Deployed", "DEPLOYED");
32
33     private String name;
34     private String auditingStatus;
35
36     private static final Logger log = Logger.getLogger(DistributionStatus.class);
37
38     DistributionStatus(String name, String auditingStatus) {
39         this.name = name;
40         this.auditingStatus = auditingStatus;
41     }
42
43     public String getName() {
44         return name;
45     }
46
47     public String getAuditingStatus() {
48         return auditingStatus;
49     }
50
51     public static DistributionStatus getStatusByAuditingStatusName(String auditingStatus) {
52         Optional<DistributionStatus> distributionStatus = Arrays.stream(values())
53             .filter(value -> value.getAuditingStatus().equals(auditingStatus)).findAny();
54         if (!distributionStatus.isPresent()){
55             log.debug("No DistributionStatus is mapped to name {}", auditingStatus);
56         }
57         // it should be replaced by some exception handling. Keeping it only for the purpose of backward compatibility
58         return distributionStatus.orElse(null);
59     }
60
61 }