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