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