Subversion Repositories SmartDukaan

Rev

Rev 438 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 438 Rev 486
Line 1... Line 1...
1
package in.shop2020.hotspot.dashbaord.server.guice;
1
package in.shop2020.hotspot.dashbaord.server.guice;
2
 
2
 
3
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
3
import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
-
 
4
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.AllOrderListHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.AllOrderListHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
12
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
-
 
13
import in.shop2020.hotspot.dashbaord.server.handler.RejectedOrderListHandler;
12
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
14
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
13
import in.shop2020.hotspot.dashbaord.server.handler.ShippedOrderListHandler;
15
import in.shop2020.hotspot.dashbaord.server.handler.ShippedOrderListHandler;
14
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
16
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
15
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
17
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
16
 
18
 
Line 20... Line 22...
20
	protected void configureHandlers() {
22
	protected void configureHandlers() {
21
		bindHandler(AuthHandler.class);	
23
		bindHandler(AuthHandler.class);	
22
		bindHandler(OrderHandler.class);
24
		bindHandler(OrderHandler.class);
23
		bindHandler(OrderDetailsHandler.class);
25
		bindHandler(OrderDetailsHandler.class);
24
		bindHandler(AcceptOrderhandler.class);
26
		bindHandler(AcceptOrderhandler.class);
-
 
27
		bindHandler(RejectOrderHandler.class);
25
		bindHandler(AcceptedOrderListHandler.class);
28
		bindHandler(AcceptedOrderListHandler.class);
-
 
29
		bindHandler(RejectedOrderListHandler.class);
26
		bindHandler(AddressHandler.class);
30
		bindHandler(AddressHandler.class);
27
		bindHandler(ShipOrderHandler.class);
31
		bindHandler(ShipOrderHandler.class);
28
		bindHandler(BillOrderHandler.class);
32
		bindHandler(BillOrderHandler.class);
29
		bindHandler(BilledOrderListHandler.class);
33
		bindHandler(BilledOrderListHandler.class);
30
		bindHandler(ShippedOrderListHandler.class);
34
		bindHandler(ShippedOrderListHandler.class);