Subversion Repositories SmartDukaan

Rev

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

Rev 168 Rev 306
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.AcceptedOrderListHandler;
4
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
5
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
-
 
6
import in.shop2020.hotspot.dashbaord.server.handler.AllOrderListHandler;
6
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
7
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
8
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
9
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
10
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
11
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
Line 24... Line 25...
24
		bindHandler(AddressHandler.class);
25
		bindHandler(AddressHandler.class);
25
		bindHandler(ShipOrderHandler.class);
26
		bindHandler(ShipOrderHandler.class);
26
		bindHandler(BillOrderHandler.class);
27
		bindHandler(BillOrderHandler.class);
27
		bindHandler(BilledOrderListHandler.class);
28
		bindHandler(BilledOrderListHandler.class);
28
		bindHandler(ShippedOrderListHandler.class);
29
		bindHandler(ShippedOrderListHandler.class);
-
 
30
		bindHandler(AllOrderListHandler.class);
29
	}
31
	}
30
 
32
 
31
}
33
}