1 /*
2  * Copyright (C) 2024 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License
15  */
16 package com.android.tv.settings.connectivity;
17 
18 /**
19  * This is responsible for preserving the current state of the network with respect to
20  * whether it is already recognized from any preceding connections.
21  */
22 public class NetworkChangeStateManager {
23     private static NetworkChangeStateManager instance;
24     private boolean isNetworkStateKnown = false;
25 
NetworkChangeStateManager()26     private NetworkChangeStateManager() {}
27 
getInstance()28     public static NetworkChangeStateManager getInstance() {
29         if (instance == null) {
30             instance = new NetworkChangeStateManager();
31         }
32         return instance;
33     }
34 
getIsNetworkStateKnown()35     public boolean getIsNetworkStateKnown() {
36         return isNetworkStateKnown;
37     }
38 
setIsNetworkStateKnown(boolean newValue)39     public void setIsNetworkStateKnown(boolean newValue) {
40         isNetworkStateKnown = newValue;
41     }
42 }
43