edu.uoc.tfc.dbmodel
Interface ClientDao

All Known Implementing Classes:
ClientDaoBase, ClientDaoImpl

public interface ClientDao

See Also:
Client

Field Summary
static int TRANSFORM_CLIENTVO
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
static int TRANSFORM_NONE
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
 
Method Summary
 Client clientVOToEntity(ClientVO clientVO)
          Converts an instance of type ClientVO to this DAO's entity.
 void clientVOToEntity(ClientVO source, Client target, boolean copyIfNull)
          Copies the fields of ClientVO to the specified entity.
 void clientVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClientVO to this DAO's entity.
 Client create(java.lang.Boolean actiu, java.lang.String dataNaixement, java.lang.String dni, java.lang.String mail, java.lang.String nom, java.util.Collection partsDelClient, java.lang.String primerCognom, java.lang.String segonCognom, java.lang.String telefon)
           Creates a new edu.uoc.tfc.dbmodel.Client instance from only required properties (attributes and association ends) and adds it to the persistent store.
 Client create(Client client)
          Creates an instance of edu.uoc.tfc.dbmodel.Client and adds it to the persistent store.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of edu.uoc.tfc.dbmodel.Client and adds from the passed in entities collection
 java.lang.Object create(int transform, java.lang.Boolean actiu, java.lang.String dataNaixement, java.lang.String dni, java.lang.String mail, java.lang.String nom, java.util.Collection partsDelClient, java.lang.String primerCognom, java.lang.String segonCognom, java.lang.String telefon)
           Does the same thing as create(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.Boolean) with an additional flag called transform.
 java.lang.Object create(int transform, Client client)
           Does the same thing as create(edu.uoc.tfc.dbmodel.Client) with an additional flag called transform.
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as create(edu.uoc.tfc.dbmodel.Client) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String dni, java.lang.String nom, java.lang.String primerCognom, java.lang.String segonCognom, java.lang.String telefon, java.lang.String mail, java.lang.String dataNaixement, java.lang.Boolean actiu)
           Does the same thing as create(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.Boolean) with an additional flag called transform.
 Client create(java.lang.String dni, java.lang.String nom, java.lang.String primerCognom, java.lang.String segonCognom, java.lang.String telefon, java.lang.String mail, java.lang.String dataNaixement, java.lang.Boolean actiu)
           Creates a new edu.uoc.tfc.dbmodel.Client instance from all attributes and adds it to the persistent store.
 java.util.Collection findClientsByCriteria(CriteriaClientVO criteria)
           Mètode per cercar clients a partir d'un criteri de cerca
 java.util.Collection findClientsByCriteria(int transform, CriteriaClientVO criteria)
           Does the same thing as findClientsByCriteria(edu.uoc.tfc.dto.CriteriaClientVO) with an additional flag called transform.
 java.util.Collection findClientsByCriteria(int transform, int pageNumber, int pageSize, CriteriaClientVO criteria)
           Does the same thing as #findClientsByCriteria(int, String, edu.uoc.tfc.dto.CriteriaClientVO) with an additional two arguments called pageNumber and pageSize.
 java.lang.Object load(int transform, java.lang.Long id)
           Does the same thing as load(java.lang.Long) with an additional flag called transform.
 Client load(java.lang.Long id)
          Loads an instance of edu.uoc.tfc.dbmodel.Client from the persistent store.
 java.util.Collection loadAll()
          Loads all entities of type Client.
 java.util.Collection loadAll(int transform)
           Does the same thing as loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as loadAll() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection loadAll(int transform, int pageNumber, int pageSize)
           Does the same thing as loadAll(int) with an additional two arguments called pageNumber and pageSize.
 void remove(Client client)
          Removes the instance of edu.uoc.tfc.dbmodel.Client from the persistent store.
 void remove(java.util.Collection entities)
          Removes all entities in the given entities collection.
 void remove(java.lang.Long id)
          Removes the instance of edu.uoc.tfc.dbmodel.Client having the given identifier from the persistent store.
 PaginationResult search(int transform, int pageNumber, int pageSize, Search search)
          Does the same thing as {@link #search(int, edu.uoc.tfc.Search) but with an additional two flags called pageNumber and pageSize.
 PaginationResult search(int pageNumber, int pageSize, Search search)
          Does the same thing as {@link #search(edu.uoc.tfc.Search) but with an additional two flags called pageNumber and pageSize.
 java.util.Set search(int transform, Search search)
          Does the same thing as search(edu.uoc.tfc.Search) but with an additional flag called transform.
 java.util.Set search(Search search)
          Performs a search using the parameters specified in the given search object.
 ClientVO toClientVO(Client entity)
          Converts this DAO's entity to an object of type ClientVO.
 void toClientVO(Client source, ClientVO target)
          Copies the fields of the specified entity to the target value object.
 ClientVO[] toClientVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClientVO.
 void toClientVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClientVO.
 void toEntities(java.util.Collection results)
          Transforms the given results to a collection of com.lighthousepmg.plz.domain.messaging.persistence.CommunicationCategory instances (this is useful when the returned results contains a row of data and you want just entities only).
 void update(Client client)
          Updates the client instance in the persistent store.
 void update(java.util.Collection entities)
          Updates all instances in the entities collection in the persistent store.
 

Field Detail

TRANSFORM_NONE

static final int TRANSFORM_NONE
This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.

This specific flag denotes no transformation will occur.

See Also:
Constant Field Values

TRANSFORM_CLIENTVO

static final int TRANSFORM_CLIENTVO
This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.

This specific flag denotes entities must be transformed into objects of type ClientVO.

See Also:
Constant Field Values
Method Detail

toEntities

void toEntities(java.util.Collection results)
Transforms the given results to a collection of com.lighthousepmg.plz.domain.messaging.persistence.CommunicationCategory instances (this is useful when the returned results contains a row of data and you want just entities only).

Parameters:
the - query results.

toClientVO

void toClientVO(Client source,
                ClientVO target)
Copies the fields of the specified entity to the target value object. This method is similar to toClientVO(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).


toClientVO

ClientVO toClientVO(Client entity)
Converts this DAO's entity to an object of type ClientVO.


toClientVOCollection

void toClientVOCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type ClientVO.


toClientVOArray

ClientVO[] toClientVOArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type ClientVO.


clientVOToEntity

void clientVOToEntity(ClientVO source,
                      Client target,
                      boolean copyIfNull)
Copies the fields of ClientVO to the specified entity.

Parameters:
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.

clientVOToEntity

Client clientVOToEntity(ClientVO clientVO)
Converts an instance of type ClientVO to this DAO's entity.


clientVOToEntityCollection

void clientVOToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type ClientVO to this DAO's entity.


load

Client load(java.lang.Long id)
Loads an instance of edu.uoc.tfc.dbmodel.Client from the persistent store.


load

java.lang.Object load(int transform,
                      java.lang.Long id)

Does the same thing as load(java.lang.Long) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined in this class then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.

Parameters:
id - the identifier of the entity to load.
Returns:
either the entity or the object transformed from the entity.

loadAll

java.util.Collection loadAll()
Loads all entities of type Client.

Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int transform)

Does the same thing as loadAll() with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.

Parameters:
transform - the flag indicating what transformation to use.
Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int pageNumber,
                             int pageSize)

Does the same thing as loadAll() with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.

Parameters:
pageNumber - the page number to retrieve when paging results.
pageSize - the size of the page to retrieve when paging results.
Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int transform,
                             int pageNumber,
                             int pageSize)

Does the same thing as loadAll(int) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.

Parameters:
transform - the flag indicating what transformation to use.
pageNumber - the page number to retrieve when paging results.
pageSize - the size of the page to retrieve when paging results.
Returns:
the loaded entities.

create

Client create(Client client)
Creates an instance of edu.uoc.tfc.dbmodel.Client and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        Client client)

Does the same thing as create(edu.uoc.tfc.dbmodel.Client) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.


create

java.util.Collection create(java.util.Collection entities)
Creates a new instance of edu.uoc.tfc.dbmodel.Client and adds from the passed in entities collection

Parameters:
entities - the collection of edu.uoc.tfc.dbmodel.Client instances to create.
Returns:
the created instances.

create

java.util.Collection create(int transform,
                            java.util.Collection entities)

Does the same thing as create(edu.uoc.tfc.dbmodel.Client) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


create

Client create(java.lang.String dni,
              java.lang.String nom,
              java.lang.String primerCognom,
              java.lang.String segonCognom,
              java.lang.String telefon,
              java.lang.String mail,
              java.lang.String dataNaixement,
              java.lang.Boolean actiu)

Creates a new edu.uoc.tfc.dbmodel.Client instance from all attributes and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        java.lang.String dni,
                        java.lang.String nom,
                        java.lang.String primerCognom,
                        java.lang.String segonCognom,
                        java.lang.String telefon,
                        java.lang.String mail,
                        java.lang.String dataNaixement,
                        java.lang.Boolean actiu)

Does the same thing as create(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.Boolean) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.


create

Client create(java.lang.Boolean actiu,
              java.lang.String dataNaixement,
              java.lang.String dni,
              java.lang.String mail,
              java.lang.String nom,
              java.util.Collection partsDelClient,
              java.lang.String primerCognom,
              java.lang.String segonCognom,
              java.lang.String telefon)

Creates a new edu.uoc.tfc.dbmodel.Client instance from only required properties (attributes and association ends) and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        java.lang.Boolean actiu,
                        java.lang.String dataNaixement,
                        java.lang.String dni,
                        java.lang.String mail,
                        java.lang.String nom,
                        java.util.Collection partsDelClient,
                        java.lang.String primerCognom,
                        java.lang.String segonCognom,
                        java.lang.String telefon)

Does the same thing as create(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.Boolean) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.


update

void update(Client client)
Updates the client instance in the persistent store.


update

void update(java.util.Collection entities)
Updates all instances in the entities collection in the persistent store.


remove

void remove(Client client)
Removes the instance of edu.uoc.tfc.dbmodel.Client from the persistent store.


remove

void remove(java.lang.Long id)
Removes the instance of edu.uoc.tfc.dbmodel.Client having the given identifier from the persistent store.


remove

void remove(java.util.Collection entities)
Removes all entities in the given entities collection.


findClientsByCriteria

java.util.Collection findClientsByCriteria(CriteriaClientVO criteria)

Mètode per cercar clients a partir d'un criteri de cerca


findClientsByCriteria

java.util.Collection findClientsByCriteria(int transform,
                                           CriteriaClientVO criteria)

Does the same thing as findClientsByCriteria(edu.uoc.tfc.dto.CriteriaClientVO) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findClientsByCriteria

java.util.Collection findClientsByCriteria(int transform,
                                           int pageNumber,
                                           int pageSize,
                                           CriteriaClientVO criteria)

Does the same thing as #findClientsByCriteria(int, String, edu.uoc.tfc.dto.CriteriaClientVO) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


search

PaginationResult search(int transform,
                        int pageNumber,
                        int pageSize,
                        Search search)
Does the same thing as {@link #search(int, edu.uoc.tfc.Search) but with an additional two flags called pageNumber and pageSize. These flags allow you to limit your data to a specified page number and size.

Parameters:
transform - the transformation flag.
pageNumber - the page number in the data to retrieve
pageSize - the size of the page to retrieve.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search wrapped in a PaginationResult instance.

search

PaginationResult search(int pageNumber,
                        int pageSize,
                        Search search)
Does the same thing as {@link #search(edu.uoc.tfc.Search) but with an additional two flags called pageNumber and pageSize. These flags allow you to limit your data to a specified page number and size.

Parameters:
pageNumber - the page number in the data to retrieve
pageSize - the size of the page to retrieve.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search wrapped in a PaginationResult instance.

search

java.util.Set search(int transform,
                     Search search)
Does the same thing as search(edu.uoc.tfc.Search) but with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.

Parameters:
transform - the transformation flag.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search.

search

java.util.Set search(Search search)
Performs a search using the parameters specified in the given search object.

Parameters:
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search.