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