| 167 |
ashish |
1 |
package in.shop2020.hotspot.dashbaord.server.guice;
|
|
|
2 |
|
|
|
3 |
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
|
|
|
4 |
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
|
|
|
5 |
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
|
|
|
6 |
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
|
| 168 |
ashish |
7 |
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
|
|
|
8 |
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
|
| 167 |
ashish |
9 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
|
|
|
10 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
|
| 168 |
ashish |
11 |
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
|
|
|
12 |
import in.shop2020.hotspot.dashbaord.server.handler.ShippedOrderListHandler;
|
| 167 |
ashish |
13 |
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
|
|
|
14 |
|
|
|
15 |
public class ServerModule extends ActionHandlerModule{
|
|
|
16 |
|
|
|
17 |
@Override
|
|
|
18 |
protected void configureHandlers() {
|
|
|
19 |
bindHandler(AuthHandler.class);
|
|
|
20 |
bindHandler(OrderHandler.class);
|
|
|
21 |
bindHandler(OrderDetailsHandler.class);
|
|
|
22 |
bindHandler(AcceptOrderhandler.class);
|
|
|
23 |
bindHandler(AcceptedOrderListHandler.class);
|
|
|
24 |
bindHandler(AddressHandler.class);
|
| 168 |
ashish |
25 |
bindHandler(ShipOrderHandler.class);
|
|
|
26 |
bindHandler(BillOrderHandler.class);
|
|
|
27 |
bindHandler(BilledOrderListHandler.class);
|
|
|
28 |
bindHandler(ShippedOrderListHandler.class);
|
| 167 |
ashish |
29 |
}
|
|
|
30 |
|
|
|
31 |
}
|