Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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;
306 ashish 6
import in.shop2020.hotspot.dashbaord.server.handler.AllOrderListHandler;
167 ashish 7
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
168 ashish 8
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
167 ashish 10
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
168 ashish 12
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
13
import in.shop2020.hotspot.dashbaord.server.handler.ShippedOrderListHandler;
167 ashish 14
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
15
 
16
public class ServerModule extends ActionHandlerModule{
17
 
18
	@Override
19
	protected void configureHandlers() {
20
		bindHandler(AuthHandler.class);	
21
		bindHandler(OrderHandler.class);
22
		bindHandler(OrderDetailsHandler.class);
23
		bindHandler(AcceptOrderhandler.class);
24
		bindHandler(AcceptedOrderListHandler.class);
25
		bindHandler(AddressHandler.class);
168 ashish 26
		bindHandler(ShipOrderHandler.class);
27
		bindHandler(BillOrderHandler.class);
28
		bindHandler(BilledOrderListHandler.class);
29
		bindHandler(ShippedOrderListHandler.class);
306 ashish 30
		bindHandler(AllOrderListHandler.class);
167 ashish 31
	}
32
 
33
}