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 OrderRequest implements Action<OrderResponse>{
        
        private static final long serialVersionUID = 5804421607858017478L;
        
        private OrderType type;
        
        @SuppressWarnings("unused")
        private OrderRequest(){ }

        public OrderRequest(OrderType type){
                this.type = type;
        }
        
        public OrderType getType(){
                return type;
        }       
}