Interface PROSAPIUserDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.Dao
- All Known Implementing Classes:
DefaultPROSAPIUserDao
public interface PROSAPIUserDao
extends de.hybris.platform.servicelayer.internal.dao.Dao
Interface that exposes APIUser Type specific DAO services
-
Method Summary
Modifier and TypeMethodDescriptiongetAPIUserByCode(String code) Find APIUser model based on the code.getAPIUserByUserName(String userName) Find APIUser model based on the userName.
-
Method Details
-
getAPIUserByCode
APIUserModel getAPIUserByCode(String code) throws de.hybris.platform.servicelayer.exceptions.ModelNotFoundException Find APIUser model based on the code.- Parameters:
code- the code- Returns:
- the APIUser
- Throws:
de.hybris.platform.servicelayer.exceptions.ModelNotFoundException- the model not found exception
-
getAPIUserByUserName
APIUserModel getAPIUserByUserName(String userName) throws de.hybris.platform.servicelayer.exceptions.ModelNotFoundException Find APIUser model based on the userName.- Parameters:
userName- the userName- Returns:
- the APIUser
- Throws:
de.hybris.platform.servicelayer.exceptions.ModelNotFoundException- the model not found exception
-