| 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;
|
|
|
7 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
|
|
|
8 |
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
|
|
|
9 |
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
|
|
|
10 |
|
|
|
11 |
public class ServerModule extends ActionHandlerModule{
|
|
|
12 |
|
|
|
13 |
@Override
|
|
|
14 |
protected void configureHandlers() {
|
|
|
15 |
bindHandler(AuthHandler.class);
|
|
|
16 |
bindHandler(OrderHandler.class);
|
|
|
17 |
bindHandler(OrderDetailsHandler.class);
|
|
|
18 |
bindHandler(AcceptOrderhandler.class);
|
|
|
19 |
bindHandler(AcceptedOrderListHandler.class);
|
|
|
20 |
bindHandler(AddressHandler.class);
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
}
|