[LIB-2] Add snooker-score-api source files
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / request / RequestType.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.request;
18
19 /**
20  * Set of Types to Request.
21  *
22  * @author Dmitry Samoshin aka gotty
23  */
24 public enum RequestType {
25
26     EVENT           ( EventRequester.getInstance()          ),
27     MATCH           ( MatchRequester.getInstance()          ),
28     PLAYER          ( PlayerRequester.getInstance()         ),
29     SEASON_EVENTS   ( SeasonEventsRequester.getInstance()   ),
30     EVENT_MATCHES   ( EventMatchesRequester.getInstance()   ),
31     ONGOING_MATCHES ( OngoingMatchesRequester.getInstance() ),
32     PLAYER_MATCHES  ( PlayerMatchesRequester.getInstance()  ),
33     EVENT_PLAYERS   ( EventPlayersRequester.getInstance()   ),
34     SEASON_PLAYERS  ( SeasonPlayersRequester.getInstance()  ),
35     RANKING         ( RankingRequester.getInstance()        );
36
37     private Requester requester;
38
39     RequestType(Requester requester) {
40         this.requester = requester;
41     }
42
43     public Requester requester() {
44         return requester;
45     }
46
47     public static String request(RequestType type, int id)
48             throws RequestException
49     {
50         if (type == null)
51             throw new RequestException(null, "Incorrect Request Type");
52         return type.requester().request(id);
53     }
54
55     public static String request(RequestType type, RequestParams params)
56             throws RequestException
57     {
58         if (type == null)
59             throw new RequestException(null, "Incorrect Request Type");
60         return type.requester().request(params);
61     }
62
63 }