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