Package com.avoka.fc.core.dao
Class ClientRefDataDao
java.lang.Object
com.avoka.core.dao.BaseDao
com.avoka.fc.core.dao.ClientRefDataDao
Provides a Dao for the ClientRefData entity.
- Since:
- 17.10.0
-
Field Summary
Fields inherited from class com.avoka.core.dao.BaseDao
FETCH_LIMIT, STATEMENT_MAX_NO_PARAMETERS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetClientRefDataByClient
(Client client) Returns the ClientRefData if parameter is matched.getClientRefDataForNameLocale
(Client client, String name, String locale) Returns the ClientRefData if parameters are matched.Return the ClientRefData with the specified ID.Methods inherited from class com.avoka.core.dao.BaseDao
addOrdering, addOrderingCaseInsensitive, addOrderingCaseSensitive, andQueryBetween, andQueryInExp, andQueryInExp, andQueryLikeIgnoreCaseExp, andQueryMatchDbExp, andQueryMatchExp, andQueryMatchIsNotNull, andQueryMatchIsNull, andQueryNoMatchExp, andQueryNotTrue, deleteObject, deleteObjects, findObject, getDataContext, getFetchLimit, getLogger, getObjectForPK, newObject, orQueryLikeIgnoreCaseExp, orQueryMatchExp, performNamedQuery, performNamedQuery, performNamedQuery, performNamedQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performQuery, performQuery, performQuery, registerNewObject, setCacheStrategy, setFetchLimit, setLocalCacheStrategy, setLocalCacheStrategy, setSharedCacheStrategy, toMap, toMap
-
Constructor Details
-
ClientRefDataDao
public ClientRefDataDao()
-
-
Method Details
-
getClientRefDataForPK
Return the ClientRefData with the specified ID.- Parameters:
id
- the OID of the ClientRefData (required)- Returns:
- the matching ClientRefData, or null if not found
-
getClientRefDataForNameLocale
Returns the ClientRefData if parameters are matched.- Parameters:
client
- the Client associated with the ClientRefData (required)name
- the name String associated with the ClientRefData (required)locale
- the locale associated with the ClientRefData (required)- Returns:
- the ClientRefData if parameters are matched, otherwise null
-
getClientRefDataByClient
Returns the ClientRefData if parameter is matched.- Parameters:
client
- the Client associated with the ClientRefData (required)- Returns:
- the List of ClientRefData if parameter is matched, otherwise empty
- Since:
- 23.4.0
-