Class DefaultAbstractOrderService<O extends AbstractOrderModel,E extends AbstractOrderEntryModel>

All Implemented Interfaces:
AbstractOrderService<O,E>, Serializable, org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.InitializingBean
Direct Known Subclasses:
DefaultCartService, DefaultOrderService

public abstract class DefaultAbstractOrderService<O extends AbstractOrderModel,E extends AbstractOrderEntryModel> extends AbstractBusinessService implements AbstractOrderService<O,E>
Default implementation of AbstractOrderService. Implements its contract on the AbstractOrderModel type level. Any order related services should extend it (i.e. DefaultOrderService, DefaultCartService , or a dedicated service for a custom order type).
See Also: