[LIB-8] Add Event Rounds and Seedings functional
[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     EVENT_ROUNDS    ( EventRoundsRequester.getInstance()    ),
37     EVENT_SEEDING   ( EventSeedingRequester.getInstance()   );
38
39     private Requester requester;
40
41     RequestType(Requester requester) {
42         this.requester = requester;
43     }
44
45     public Requester requester() {
46         return requester;
47     }
48
49     public static String request(RequestType type, int id)
50             throws RequestException
51     {
52         if (type == null)
53             throw new RequestException(null, "Incorrect Request Type");
54         return type.requester().request(id);
55     }
56
57     public static String request(RequestType type, RequestParams params)
58             throws RequestException
59     {
60         if (type == null)
61             throw new RequestException(null, "Incorrect Request Type");
62         return type.requester().request(params);
63     }
64
65 }