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