Merge "[OOM-CERT-SERVICE] Add Certification Request functionality"
[oom/platform/cert-service.git] / certService / src / main / java / org / onap / oom / certservice / certification / conversion / StringBase64.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Cert Service
4  * ================================================================================
5  * Copyright (C) 2020-2021 Nokia. 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.onap.oom.certservice.certification.conversion;
22
23 import java.util.Base64;
24 import java.util.Objects;
25 import java.util.Optional;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 public class StringBase64 {
30
31     private final String value;
32     private final Base64.Decoder decoder = Base64.getDecoder();
33     private static final Logger LOGGER = LoggerFactory.getLogger(StringBase64.class);
34
35     public StringBase64(String value) {
36         this.value = value;
37     }
38
39     public Optional<String> asString() {
40         try {
41             String decodedString = new String(decoder.decode(value));
42             return Optional.of(decodedString);
43         } catch (RuntimeException e) {
44             LOGGER.error("Exception occurred during decoding:", e);
45             return Optional.empty();
46         }
47     }
48
49     @Override
50     public boolean equals(Object otherObject) {
51         if (this == otherObject) {
52             return true;
53         }
54         if (otherObject == null || getClass() != otherObject.getClass()) {
55             return false;
56         }
57         StringBase64 that = (StringBase64) otherObject;
58         return Objects.equals(value, that.value);
59     }
60
61     @Override
62     public int hashCode() {
63         return value.hashCode();
64     }
65 }