Class ClientRefDataDao

java.lang.Object
com.avoka.core.dao.BaseDao
com.avoka.fc.core.dao.ClientRefDataDao

public class ClientRefDataDao extends BaseDao
Provides a Dao for the ClientRefData entity.
Since:
17.10.0
  • Constructor Details

    • ClientRefDataDao

      public ClientRefDataDao()
  • Method Details

    • getClientRefDataForPK

      public ClientRefData getClientRefDataForPK(Object id)
      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

      public ClientRefData getClientRefDataForNameLocale(Client client, String name, String locale)
      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

      public List<ClientRefData> getClientRefDataByClient(Client client)
      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