Subversion Repositories SmartDukaan

Rev

Rev 4827 | Rev 6019 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4827 Rev 5455
Line 2... Line 2...
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.AddDelayReasonHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.AddDelayReasonHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AddJacketNumberHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AddJacketNumberHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.AddWeightHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.AddWeightHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
-
 
8
import in.shop2020.hotspot.dashbaord.server.handler.AlertsHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.AlertsHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.AllProvidersListHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.AllProvidersListHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.AllReturnOrdersListHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.AllReturnOrdersListHandler;
12
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
13
import in.shop2020.hotspot.dashbaord.server.handler.AuthorizePickupHandler;
12
import in.shop2020.hotspot.dashbaord.server.handler.AuthorizePickupHandler;
14
import in.shop2020.hotspot.dashbaord.server.handler.BestDealsHandler;
-
 
15
import in.shop2020.hotspot.dashbaord.server.handler.BestSellersHandler;
-
 
16
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
13
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
17
import in.shop2020.hotspot.dashbaord.server.handler.ChooseColorHandler;
14
import in.shop2020.hotspot.dashbaord.server.handler.ChooseColorHandler;
18
import in.shop2020.hotspot.dashbaord.server.handler.ChooseWarehouseHandler;
15
import in.shop2020.hotspot.dashbaord.server.handler.ChooseWarehouseHandler;
19
import in.shop2020.hotspot.dashbaord.server.handler.DisableAlertsHandler;
16
import in.shop2020.hotspot.dashbaord.server.handler.DisableAlertsHandler;
20
import in.shop2020.hotspot.dashbaord.server.handler.FlagOrderHandler;
17
import in.shop2020.hotspot.dashbaord.server.handler.FlagOrderHandler;
21
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
18
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
22
import in.shop2020.hotspot.dashbaord.server.handler.LatestArrivalsHandler;
-
 
23
import in.shop2020.hotspot.dashbaord.server.handler.LostInTransitHandler;
19
import in.shop2020.hotspot.dashbaord.server.handler.LostInTransitHandler;
24
import in.shop2020.hotspot.dashbaord.server.handler.MarkDeliveredHandler;
20
import in.shop2020.hotspot.dashbaord.server.handler.MarkDeliveredHandler;
25
import in.shop2020.hotspot.dashbaord.server.handler.MarkOrdersAsManifestedHandler;
21
import in.shop2020.hotspot.dashbaord.server.handler.MarkOrdersAsManifestedHandler;
26
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
22
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
27
import in.shop2020.hotspot.dashbaord.server.handler.OrderCountsHandler;
23
import in.shop2020.hotspot.dashbaord.server.handler.OrderCountsHandler;
Line 37... Line 33...
37
import in.shop2020.hotspot.dashbaord.server.handler.SearchOrderHandler;
33
import in.shop2020.hotspot.dashbaord.server.handler.SearchOrderHandler;
38
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
34
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
39
import in.shop2020.hotspot.dashbaord.server.handler.ValidateDoaHandler;
35
import in.shop2020.hotspot.dashbaord.server.handler.ValidateDoaHandler;
40
import in.shop2020.hotspot.dashbaord.server.handler.ValidateProductHandler;
36
import in.shop2020.hotspot.dashbaord.server.handler.ValidateProductHandler;
41
import in.shop2020.hotspot.dashbaord.server.handler.VerifyOrderHandler;
37
import in.shop2020.hotspot.dashbaord.server.handler.VerifyOrderHandler;
42
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
-
 
43
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
38
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
44
 
39
 
45
public class ServerModule extends ActionHandlerModule{
40
public class ServerModule extends ActionHandlerModule{
46
 
41
 
47
	@Override
42
	@Override
Line 51... Line 46...
51
		bindHandler(OrderDetailsHandler.class);
46
		bindHandler(OrderDetailsHandler.class);
52
		bindHandler(VerifyOrderHandler.class);
47
		bindHandler(VerifyOrderHandler.class);
53
		bindHandler(AcceptOrderhandler.class);
48
		bindHandler(AcceptOrderhandler.class);
54
		bindHandler(RejectOrderHandler.class);
49
		bindHandler(RejectOrderHandler.class);
55
		bindHandler(NostockOrderhandler.class);
50
		bindHandler(NostockOrderhandler.class);
56
		bindHandler(AddressHandler.class);
-
 
57
		bindHandler(ShipOrderHandler.class);
51
		bindHandler(ShipOrderHandler.class);
58
		bindHandler(BillOrderHandler.class);
52
		bindHandler(BillOrderHandler.class);
59
		bindHandler(WarningRequestHandler.class);
-
 
60
		bindHandler(AddJacketNumberHandler.class);
53
		bindHandler(AddJacketNumberHandler.class);
61
		bindHandler(FlagOrderHandler.class);
54
		bindHandler(FlagOrderHandler.class);
62
		bindHandler(RequestPickupHandler.class);
55
		bindHandler(RequestPickupHandler.class);
63
		bindHandler(AuthorizePickupHandler.class);
56
		bindHandler(AuthorizePickupHandler.class);
64
		bindHandler(ReceiveReturnHandler.class);
57
		bindHandler(ReceiveReturnHandler.class);
Line 80... Line 73...
80
		bindHandler(ChooseColorHandler.class);
73
		bindHandler(ChooseColorHandler.class);
81
		bindHandler(AddDelayReasonHandler.class);
74
		bindHandler(AddDelayReasonHandler.class);
82
		bindHandler(ChooseWarehouseHandler.class);
75
		bindHandler(ChooseWarehouseHandler.class);
83
		
76
		
84
		bindHandler(AllItemsListHandler.class);
77
		bindHandler(AllItemsListHandler.class);
85
		bindHandler(BestDealsHandler.class);
-
 
86
		bindHandler(BestSellersHandler.class);
-
 
87
		bindHandler(LatestArrivalsHandler.class);
-
 
88
		bindHandler(ItemDetailsHandler.class);
78
		bindHandler(ItemDetailsHandler.class);
89
		
79
		
90
		bindHandler(AllProvidersListHandler.class);
80
		bindHandler(AllProvidersListHandler.class);
91
		bindHandler(MarkOrdersAsManifestedHandler.class);
81
		bindHandler(MarkOrdersAsManifestedHandler.class);
92
		bindHandler(MarkDeliveredHandler.class);
82
		bindHandler(MarkDeliveredHandler.class);