| Line 1... |
Line 1... |
| 1 |
package in.shop2020.hotspot.dashbaord.server.guice;
|
1 |
package in.shop2020.hotspot.dashbaord.server.guice;
|
| 2 |
|
2 |
|
| - |
|
3 |
import in.shop2020.hotspot.dashbaord.server.handler.AcceptDoaHandler;
|
| 3 |
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
|
4 |
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
|
| 4 |
import in.shop2020.hotspot.dashbaord.server.handler.AddJacketNumberHandler;
|
5 |
import in.shop2020.hotspot.dashbaord.server.handler.AddJacketNumberHandler;
|
| 5 |
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
|
6 |
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
|
| 6 |
import in.shop2020.hotspot.dashbaord.server.handler.AllProvidersListHandler;
|
7 |
import in.shop2020.hotspot.dashbaord.server.handler.AllProvidersListHandler;
|
| 7 |
import in.shop2020.hotspot.dashbaord.server.handler.AuthorizePickupHandler;
|
8 |
import in.shop2020.hotspot.dashbaord.server.handler.AuthorizePickupHandler;
|
| Line 18... |
Line 19... |
| 18 |
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
|
19 |
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
|
| 19 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
|
20 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
|
| 20 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
|
21 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
|
| 21 |
import in.shop2020.hotspot.dashbaord.server.handler.RequestPickupHandler;
|
22 |
import in.shop2020.hotspot.dashbaord.server.handler.RequestPickupHandler;
|
| 22 |
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
|
23 |
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
|
| - |
|
24 |
import in.shop2020.hotspot.dashbaord.server.handler.ValidateDoaHandler;
|
| 23 |
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
|
25 |
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
|
| 24 |
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
|
26 |
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
|
| 25 |
|
27 |
|
| 26 |
public class ServerModule extends ActionHandlerModule{
|
28 |
public class ServerModule extends ActionHandlerModule{
|
| 27 |
|
29 |
|
| Line 39... |
Line 41... |
| 39 |
bindHandler(WarningRequestHandler.class);
|
41 |
bindHandler(WarningRequestHandler.class);
|
| 40 |
bindHandler(AddJacketNumberHandler.class);
|
42 |
bindHandler(AddJacketNumberHandler.class);
|
| 41 |
bindHandler(FlagOrderHandler.class);
|
43 |
bindHandler(FlagOrderHandler.class);
|
| 42 |
bindHandler(RequestPickupHandler.class);
|
44 |
bindHandler(RequestPickupHandler.class);
|
| 43 |
bindHandler(AuthorizePickupHandler.class);
|
45 |
bindHandler(AuthorizePickupHandler.class);
|
| - |
|
46 |
bindHandler(AcceptDoaHandler.class);
|
| - |
|
47 |
bindHandler(ValidateDoaHandler.class);
|
| 44 |
|
48 |
|
| 45 |
bindHandler(AllItemsListHandler.class);
|
49 |
bindHandler(AllItemsListHandler.class);
|
| 46 |
bindHandler(BestDealsHandler.class);
|
50 |
bindHandler(BestDealsHandler.class);
|
| 47 |
bindHandler(BestSellersHandler.class);
|
51 |
bindHandler(BestSellersHandler.class);
|
| 48 |
bindHandler(LatestArrivalsHandler.class);
|
52 |
bindHandler(LatestArrivalsHandler.class);
|