[LIB-2] Add snooker-score-api source files
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / Snooker.java
1 /*
2  * Copyright (c) 2017. Developed by Hedgecode.
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
17 package org.hedgecode.snooker;
18
19 import org.hedgecode.snooker.api.SnookerScoreAPI;
20 import org.hedgecode.snooker.cache.CacheSnookerScore;
21 import org.hedgecode.snooker.json.JsonSnookerScore;
22
23 /**
24  * Snooker Score Common Class for API access.
25  *
26  * @author Dmitry Samoshin aka gotty
27  */
28 public final class Snooker {
29
30     private static final SnookerScoreAPI JSON_API = JsonSnookerScore.getInstance();
31     private static final SnookerScoreAPI CACHED_API = CacheSnookerScore.getInstance();
32
33     public static SnookerScoreAPI API() {
34         return CACHED_API;
35     }
36
37     public static SnookerScoreAPI API(boolean useCache) {
38         return useCache ? CACHED_API : JSON_API;
39     }
40
41     public static SnookerScoreAPI uncachedAPI() {
42         return JSON_API;
43     }
44
45     public static SnookerScoreAPI cachedAPI() {
46         return CACHED_API;
47     }
48
49 }