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