Subversion Repositories SmartDukaan

Rev

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

Rev 584 Rev 585
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.AllItemsListHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.AllItemsListHandler;
-
 
5
import in.shop2020.hotspot.dashbaord.server.handler.ItemDetailsHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderListHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.NostockOrderhandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.RejectOrderHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
Line 39... Line 40...
39
		bindHandler(ShippedOrderListHandler.class);
40
		bindHandler(ShippedOrderListHandler.class);
40
		bindHandler(AllOrderListHandler.class);
41
		bindHandler(AllOrderListHandler.class);
41
		bindHandler(WarningRequestHandler.class);
42
		bindHandler(WarningRequestHandler.class);
42
		
43
		
43
		bindHandler(AllItemsListHandler.class);
44
		bindHandler(AllItemsListHandler.class);
-
 
45
		bindHandler(ItemDetailsHandler.class);
44
	}
46
	}
45
 
47
 
46
}
48
}