Class DefaultOrgUnitQuoteService
- java.lang.Object
-
- de.hybris.platform.commerceservices.organization.services.impl.DefaultOrgUnitQuoteService
-
- All Implemented Interfaces:
OrgUnitQuoteService
public class DefaultOrgUnitQuoteService extends java.lang.Object implements OrgUnitQuoteService
Default implementation of theOrgUnitQuoteServiceinterface.
-
-
Constructor Summary
Constructors Constructor Description DefaultOrgUnitQuoteService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected OrgUnitAuthorizationStrategygetOrgUnitAuthorizationStrategy()protected OrgUnitDao<OrgUnitModel>getOrgUnitDao()SearchPageData<QuoteModel>getQuotesForEmployee(EmployeeModel employee, PageableData pageableData)Returns allQuoteModelinstances associated with at least one of the given employee's units.protected QuoteStateSelectionStrategygetQuoteStateSelectionStrategy()voidsetOrgUnitAuthorizationStrategy(OrgUnitAuthorizationStrategy orgUnitAuthorizationStrategy)voidsetOrgUnitDao(OrgUnitDao<OrgUnitModel> orgUnitDao)voidsetQuoteStateSelectionStrategy(QuoteStateSelectionStrategy quoteStateSelectionStrategy)
-
-
-
Method Detail
-
getQuotesForEmployee
public SearchPageData<QuoteModel> getQuotesForEmployee(EmployeeModel employee, PageableData pageableData)
Description copied from interface:OrgUnitQuoteServiceReturns allQuoteModelinstances associated with at least one of the given employee's units.- Specified by:
getQuotesForEmployeein interfaceOrgUnitQuoteService- Parameters:
employee- an employee who is a member of an organizational unitpageableData- paging information- Returns:
SearchPageDatacontaining the paged search result
-
getOrgUnitDao
protected OrgUnitDao<OrgUnitModel> getOrgUnitDao()
-
setOrgUnitDao
public void setOrgUnitDao(OrgUnitDao<OrgUnitModel> orgUnitDao)
-
getQuoteStateSelectionStrategy
protected QuoteStateSelectionStrategy getQuoteStateSelectionStrategy()
-
setQuoteStateSelectionStrategy
public void setQuoteStateSelectionStrategy(QuoteStateSelectionStrategy quoteStateSelectionStrategy)
-
getOrgUnitAuthorizationStrategy
protected OrgUnitAuthorizationStrategy getOrgUnitAuthorizationStrategy()
-
setOrgUnitAuthorizationStrategy
public void setOrgUnitAuthorizationStrategy(OrgUnitAuthorizationStrategy orgUnitAuthorizationStrategy)
-
-