Subversion Repositories SmartDukaan

Rev

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

Rev 2209 Rev 2449
Line 7... Line 7...
7
import in.shop2020.hotspot.dashbaord.server.handler.BestDealsHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.BestDealsHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.BestSellersHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.BestSellersHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.LatestArrivalsHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.LatestArrivalsHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.MarkOrdersAsManifestedHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.MarkOrdersAsManifestedHandler;
12
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
-
 
13
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
12
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
14
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
13
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
15
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
-
 
16
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
14
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
17
import in.shop2020.hotspot.dashbaord.server.handler.AllOrderListHandler;
-
 
18
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
15
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
19
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
16
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
20
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
-
 
21
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
17
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
22
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
18
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
23
import in.shop2020.hotspot.dashbaord.server.handler.RejectedOrderListHandler;
-
 
24
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
19
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
25
import in.shop2020.hotspot.dashbaord.server.handler.ShippedOrderListHandler;
-
 
26
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
20
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
27
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
21
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;
28
 
22
 
29
public class ServerModule extends ActionHandlerModule{
23
public class ServerModule extends ActionHandlerModule{
30
 
24
 
Line 34... Line 28...
34
		bindHandler(OrderHandler.class);
28
		bindHandler(OrderHandler.class);
35
		bindHandler(OrderDetailsHandler.class);
29
		bindHandler(OrderDetailsHandler.class);
36
		bindHandler(AcceptOrderhandler.class);
30
		bindHandler(AcceptOrderhandler.class);
37
		bindHandler(RejectOrderHandler.class);
31
		bindHandler(RejectOrderHandler.class);
38
		bindHandler(NostockOrderhandler.class);
32
		bindHandler(NostockOrderhandler.class);
39
		bindHandler(AcceptedOrderListHandler.class);
-
 
40
		bindHandler(RejectedOrderListHandler.class);
-
 
41
		bindHandler(NostockOrderListHandler.class);
-
 
42
		bindHandler(AddressHandler.class);
33
		bindHandler(AddressHandler.class);
43
		bindHandler(ShipOrderHandler.class);
34
		bindHandler(ShipOrderHandler.class);
44
		bindHandler(BillOrderHandler.class);
35
		bindHandler(BillOrderHandler.class);
45
		bindHandler(BilledOrderListHandler.class);
-
 
46
		bindHandler(ShippedOrderListHandler.class);
-
 
47
		bindHandler(AllOrderListHandler.class);
-
 
48
		bindHandler(WarningRequestHandler.class);
36
		bindHandler(WarningRequestHandler.class);
49
		bindHandler(AddJacketNumberHandler.class);
37
		bindHandler(AddJacketNumberHandler.class);
50
		
38
		
51
		bindHandler(AllItemsListHandler.class);
39
		bindHandler(AllItemsListHandler.class);
52
		bindHandler(BestDealsHandler.class);
40
		bindHandler(BestDealsHandler.class);
Line 55... Line 43...
55
		bindHandler(ItemDetailsHandler.class);
43
		bindHandler(ItemDetailsHandler.class);
56
		
44
		
57
		bindHandler(AllProvidersListHandler.class);
45
		bindHandler(AllProvidersListHandler.class);
58
		bindHandler(MarkOrdersAsManifestedHandler.class);
46
		bindHandler(MarkOrdersAsManifestedHandler.class);
59
	}
47
	}
60
 
-
 
61
}
48
}