Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package in.shop2020.hotspot.dashbaord.shared.actions;

import net.customware.gwt.dispatch.shared.Action;

public class AllOrderListRequest implements Action<AllOrderListResponse>{

        /**
         * 
         */
        private static final long serialVersionUID = 9183440277325008910L;
        
        private OrderType type;
        
        @SuppressWarnings("unused")
        private AllOrderListRequest(){}
        
        public AllOrderListRequest(OrderType type){
                this.type = type;
        }
        
        public OrderType getType(){
                return type;
        }

}