| 167 |
ashish |
1 |
package in.shop2020.hotspot.dashbaord.server.guice;
|
|
|
2 |
|
|
|
3 |
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
|
| 1146 |
chandransh |
4 |
import in.shop2020.hotspot.dashbaord.server.handler.AddJacketNumberHandler;
|
| 584 |
chandransh |
5 |
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
|
| 760 |
chandransh |
6 |
import in.shop2020.hotspot.dashbaord.server.handler.AllProvidersListHandler;
|
| 597 |
chandransh |
7 |
import in.shop2020.hotspot.dashbaord.server.handler.BestDealsHandler;
|
|
|
8 |
import in.shop2020.hotspot.dashbaord.server.handler.BestSellersHandler;
|
| 585 |
chandransh |
9 |
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
|
| 597 |
chandransh |
10 |
import in.shop2020.hotspot.dashbaord.server.handler.LatestArrivalsHandler;
|
| 848 |
chandransh |
11 |
import in.shop2020.hotspot.dashbaord.server.handler.MarkOrdersAsManifestedHandler;
|
| 487 |
rajveer |
12 |
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
|
| 486 |
rajveer |
13 |
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
|
| 167 |
ashish |
14 |
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
|
|
|
15 |
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
|
| 168 |
ashish |
16 |
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
|
| 167 |
ashish |
17 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
|
|
|
18 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
|
| 168 |
ashish |
19 |
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
|
| 438 |
rajveer |
20 |
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
|
| 167 |
ashish |
21 |
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
|
|
|
22 |
|
|
|
23 |
public class ServerModule extends ActionHandlerModule{
|
|
|
24 |
|
|
|
25 |
@Override
|
|
|
26 |
protected void configureHandlers() {
|
|
|
27 |
bindHandler(AuthHandler.class);
|
|
|
28 |
bindHandler(OrderHandler.class);
|
|
|
29 |
bindHandler(OrderDetailsHandler.class);
|
|
|
30 |
bindHandler(AcceptOrderhandler.class);
|
| 486 |
rajveer |
31 |
bindHandler(RejectOrderHandler.class);
|
| 487 |
rajveer |
32 |
bindHandler(NostockOrderhandler.class);
|
| 167 |
ashish |
33 |
bindHandler(AddressHandler.class);
|
| 168 |
ashish |
34 |
bindHandler(ShipOrderHandler.class);
|
|
|
35 |
bindHandler(BillOrderHandler.class);
|
| 438 |
rajveer |
36 |
bindHandler(WarningRequestHandler.class);
|
| 1146 |
chandransh |
37 |
bindHandler(AddJacketNumberHandler.class);
|
| 584 |
chandransh |
38 |
|
|
|
39 |
bindHandler(AllItemsListHandler.class);
|
| 597 |
chandransh |
40 |
bindHandler(BestDealsHandler.class);
|
|
|
41 |
bindHandler(BestSellersHandler.class);
|
|
|
42 |
bindHandler(LatestArrivalsHandler.class);
|
| 585 |
chandransh |
43 |
bindHandler(ItemDetailsHandler.class);
|
| 760 |
chandransh |
44 |
|
|
|
45 |
bindHandler(AllProvidersListHandler.class);
|
| 848 |
chandransh |
46 |
bindHandler(MarkOrdersAsManifestedHandler.class);
|
| 167 |
ashish |
47 |
}
|
|
|
48 |
}
|