Subversion Repositories SmartDukaan

Rev

Rev 306 | Rev 486 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.hotspot.dashbaord.server.guice;

import in.shop2020.hotspot.dashbaord.server.handler.AcceptOrderhandler;
import in.shop2020.hotspot.dashbaord.server.handler.AcceptedOrderListHandler;
import in.shop2020.hotspot.dashbaord.server.handler.AddressHandler;
import in.shop2020.hotspot.dashbaord.server.handler.AllOrderListHandler;
import in.shop2020.hotspot.dashbaord.server.handler.AuthHandler;
import in.shop2020.hotspot.dashbaord.server.handler.BillOrderHandler;
import in.shop2020.hotspot.dashbaord.server.handler.BilledOrderListHandler;
import in.shop2020.hotspot.dashbaord.server.handler.OrderDetailsHandler;
import in.shop2020.hotspot.dashbaord.server.handler.OrderHandler;
import in.shop2020.hotspot.dashbaord.server.handler.ShipOrderHandler;
import in.shop2020.hotspot.dashbaord.server.handler.ShippedOrderListHandler;
import in.shop2020.hotspot.dashbaord.server.handler.WarningRequestHandler;
import net.customware.gwt.dispatch.server.guice.ActionHandlerModule;

public class ServerModule extends ActionHandlerModule{

        @Override
        protected void configureHandlers() {
                bindHandler(AuthHandler.class); 
                bindHandler(OrderHandler.class);
                bindHandler(OrderDetailsHandler.class);
                bindHandler(AcceptOrderhandler.class);
                bindHandler(AcceptedOrderListHandler.class);
                bindHandler(AddressHandler.class);
                bindHandler(ShipOrderHandler.class);
                bindHandler(BillOrderHandler.class);
                bindHandler(BilledOrderListHandler.class);
                bindHandler(ShippedOrderListHandler.class);
                bindHandler(AllOrderListHandler.class);
                bindHandler(WarningRequestHandler.class);
        }

}