Merge changes from topics "VID-45", "VID-44"
[vid.git] / vid-app-common / src / main / java / org / onap / vid / utils / Unchecked.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.onap.vid.utils;
22
23 import java.net.URI;
24 import java.net.URISyntaxException;
25 import java.util.function.Supplier;
26 import org.apache.commons.lang3.exception.ExceptionUtils;
27 import org.onap.vid.exceptions.GenericUncheckedException;
28
29 public class Unchecked {
30     private Unchecked() {
31         // explicit private constructor, to hide the implicit public constructor
32     }
33
34     public static URI toURI(String uri) {
35         try {
36             // Indulge spaces in the URI by the replcement
37             return new URI(uri.replace(" ", "%20"));
38         } catch (URISyntaxException e) {
39             throw new GenericUncheckedException(e);
40         }
41     }
42
43     @FunctionalInterface
44     public interface UncheckedThrowingSupplier<T> extends Supplier<T> {
45
46         @Override
47         default T get() {
48             try {
49                 return getThrows();
50             } catch (Exception e) {
51                 return ExceptionUtils.rethrow(e);
52             }
53         }
54
55         T getThrows() throws Exception;
56     }
57
58 }