]> git.basschouten.com Git - openhab-addons.git/blob
535b305e53fb92f0a8d2bb708bab92f1c50b9fb7
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.bticinosmarther.internal.util;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 import com.google.gson.FieldNamingPolicy;
18 import com.google.gson.Gson;
19 import com.google.gson.GsonBuilder;
20
21 /**
22  * The {@code ModelUtil} utility class to get the {@code Gson} instance to parse the Smarther API data with.
23  *
24  * @author Fabio Possieri - Initial contribution
25  */
26 @NonNullByDefault
27 public final class ModelUtil {
28
29     private static final Gson GSON = new GsonBuilder()
30             .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES).create();
31
32     private ModelUtil() {
33         // Util class
34     }
35
36     /**
37      * Returns the {@code Gson} instance to parse the Smarther API data with.
38      *
39      * @return the {@code Gson} instance
40      */
41     public static Gson gsonInstance() {
42         return GSON;
43     }
44 }