fr.ifremer.allegro.administration.programStrategy
Class AcquisitionLevelDaoBase

java.lang.Object
  extended by org.springframework.orm.hibernate3.support.HibernateDaoSupport
      extended by fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDaoBase
All Implemented Interfaces:
AcquisitionLevelDao
Direct Known Subclasses:
AcquisitionLevelDaoImpl

public abstract class AcquisitionLevelDaoBase
extends org.springframework.orm.hibernate3.support.HibernateDaoSupport
implements AcquisitionLevelDao

Base Spring DAO Class: is able to create, update, remove, load, and find objects of type fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel.

See Also:
AcquisitionLevel

Field Summary
 
Fields inherited from interface fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao
TRANSFORM_CLUSTERACQUISITIONLEVEL, TRANSFORM_NONE, TRANSFORM_REMOTEACQUISITIONLEVELFULLVO, TRANSFORM_REMOTEACQUISITIONLEVELNATURALID
 
Constructor Summary
AcquisitionLevelDaoBase()
           
 
Method Summary
 void clusterAcquisitionLevelToEntity(ClusterAcquisitionLevel source, AcquisitionLevel target, boolean copyIfNull)
          Copies the fields of ClusterAcquisitionLevel to the specified entity.
 void clusterAcquisitionLevelToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterAcquisitionLevel to this DAO's entity.
 AcquisitionLevel create(AcquisitionLevel acquisitionLevel)
          Creates an instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel and adds it to the persistent store.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel and adds from the passed in entities collection
 java.lang.Object create(int transform, AcquisitionLevel acquisitionLevel)
           Does the same thing as AcquisitionLevelDao.create(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel) with an additional flag called transform.
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as AcquisitionLevelDao.create(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String code, java.lang.String name)
           Does the same thing as AcquisitionLevelDao.create(java.lang.String,java.lang.String) with an additional flag called transform.
 AcquisitionLevel create(java.lang.String code, java.lang.String name)
           Creates a new fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel instance from all attributes and properties and adds it to the persistent store.
 AcquisitionLevel createFromClusterAcquisitionLevel(ClusterAcquisitionLevel clusterAcquisitionLevel)
           
 java.lang.Object findAcquisitionLevelByCode(int transform, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String) with an additional flag called transform.
 java.lang.Object findAcquisitionLevelByCode(int transform, java.lang.String queryString, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByCode(int, java.lang.String) with an additional argument called queryString.
 AcquisitionLevel findAcquisitionLevelByCode(java.lang.String code)
           
 AcquisitionLevel findAcquisitionLevelByCode(java.lang.String queryString, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String) with an additional argument called queryString.
 java.lang.Object findAcquisitionLevelByNaturalId(int transform, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String) with an additional flag called transform.
 java.lang.Object findAcquisitionLevelByNaturalId(int transform, java.lang.String queryString, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByNaturalId(int, java.lang.String) with an additional argument called queryString.
 AcquisitionLevel findAcquisitionLevelByNaturalId(java.lang.String code)
           
 AcquisitionLevel findAcquisitionLevelByNaturalId(java.lang.String queryString, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String) with an additional argument called queryString.
 java.util.Collection getAllAcquisitionLevel()
           
 java.util.Collection getAllAcquisitionLevel(int transform)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel() with an additional flag called transform.
 java.util.Collection getAllAcquisitionLevel(int pageNumber, int pageSize)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllAcquisitionLevel(int transform, int pageNumber, int pageSize)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllAcquisitionLevel(int transform, java.lang.String queryString)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(int) with an additional argument called queryString.
 java.util.Collection getAllAcquisitionLevel(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllAcquisitionLevel(java.lang.String queryString)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel() with an additional argument called queryString.
 java.util.Collection getAllAcquisitionLevel(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(String) with an additional two arguments called pageNumber and pageSize.
 ClusterAcquisitionLevel[] getAllClusterAcquisitionLevel(java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
           
protected  java.security.Principal getPrincipal()
          Gets the current principal if one has been set, otherwise returns null.
protected abstract  AcquisitionLevel handleCreateFromClusterAcquisitionLevel(ClusterAcquisitionLevel clusterAcquisitionLevel)
          Performs the core logic for createFromClusterAcquisitionLevel(fr.ifremer.allegro.administration.programStrategy.generic.cluster.ClusterAcquisitionLevel)
protected abstract  ClusterAcquisitionLevel[] handleGetAllClusterAcquisitionLevel(java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
          Performs the core logic for getAllClusterAcquisitionLevel(java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)
 java.lang.Object load(int transform, java.lang.String code)
           Does the same thing as AcquisitionLevelDao.load(java.lang.String) with an additional flag called transform.
 AcquisitionLevel load(java.lang.String code)
          Loads an instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel from the persistent store.
 java.util.Collection loadAll()
          Loads all entities of type AcquisitionLevel.
 java.util.Collection loadAll(int transform)
           Does the same thing as AcquisitionLevelDao.loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as AcquisitionLevelDao.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 AcquisitionLevelDao.loadAll(int) with an additional two arguments called pageNumber and pageSize.
 void remoteAcquisitionLevelFullVOToEntity(RemoteAcquisitionLevelFullVO source, AcquisitionLevel target, boolean copyIfNull)
          Copies the fields of RemoteAcquisitionLevelFullVO to the specified entity.
 void remoteAcquisitionLevelFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteAcquisitionLevelFullVO to this DAO's entity.
 void remoteAcquisitionLevelNaturalIdToEntity(RemoteAcquisitionLevelNaturalId source, AcquisitionLevel target, boolean copyIfNull)
          Copies the fields of RemoteAcquisitionLevelNaturalId to the specified entity.
 void remoteAcquisitionLevelNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteAcquisitionLevelNaturalId to this DAO's entity.
 void remove(AcquisitionLevel acquisitionLevel)
          Removes the instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel from the persistent store.
 void remove(java.util.Collection entities)
          Removes all entities in the given entities collection.
 void remove(java.lang.String code)
          Removes the instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel 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, fr.ifremer.allegro.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(fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize.
 java.util.Set search(int transform, Search search)
          Does the same thing as AcquisitionLevelDao.search(fr.ifremer.allegro.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.
 ClusterAcquisitionLevel toClusterAcquisitionLevel(AcquisitionLevel entity)
          Converts this DAO's entity to an object of type ClusterAcquisitionLevel.
 void toClusterAcquisitionLevel(AcquisitionLevel source, ClusterAcquisitionLevel target)
          Copies the fields of the specified entity to the target value object.
protected  ClusterAcquisitionLevel toClusterAcquisitionLevel(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 ClusterAcquisitionLevel[] toClusterAcquisitionLevelArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterAcquisitionLevel.
 void toClusterAcquisitionLevelCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterAcquisitionLevel.
protected  AcquisitionLevel toEntity(java.lang.Object[] row)
           
 RemoteAcquisitionLevelFullVO toRemoteAcquisitionLevelFullVO(AcquisitionLevel entity)
          Converts this DAO's entity to an object of type RemoteAcquisitionLevelFullVO.
 void toRemoteAcquisitionLevelFullVO(AcquisitionLevel source, RemoteAcquisitionLevelFullVO target)
          Copies the fields of the specified entity to the target value object.
protected  RemoteAcquisitionLevelFullVO toRemoteAcquisitionLevelFullVO(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemoteAcquisitionLevelFullVO[] toRemoteAcquisitionLevelFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteAcquisitionLevelFullVO.
 void toRemoteAcquisitionLevelFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteAcquisitionLevelFullVO.
 RemoteAcquisitionLevelNaturalId toRemoteAcquisitionLevelNaturalId(AcquisitionLevel entity)
          Converts this DAO's entity to an object of type RemoteAcquisitionLevelNaturalId.
 void toRemoteAcquisitionLevelNaturalId(AcquisitionLevel source, RemoteAcquisitionLevelNaturalId target)
          Copies the fields of the specified entity to the target value object.
protected  RemoteAcquisitionLevelNaturalId toRemoteAcquisitionLevelNaturalId(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemoteAcquisitionLevelNaturalId[] toRemoteAcquisitionLevelNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteAcquisitionLevelNaturalId.
 void toRemoteAcquisitionLevelNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteAcquisitionLevelNaturalId.
protected  void transformEntities(int transform, java.util.Collection entities)
          Transforms a collection of entities using the transformEntity(int,fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel) method.
protected  java.lang.Object transformEntity(int transform, AcquisitionLevel entity)
          Allows transformation of entities into value objects (or something else for that matter), when the transform flag is set to one of the constants defined in fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao, please note that the AcquisitionLevelDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be returned.
 void update(AcquisitionLevel acquisitionLevel)
          Updates the acquisitionLevel instance in the persistent store.
 void update(java.util.Collection entities)
          Updates all instances in the entities collection in the persistent store.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao
clusterAcquisitionLevelToEntity, remoteAcquisitionLevelFullVOToEntity, remoteAcquisitionLevelNaturalIdToEntity
 

Constructor Detail

AcquisitionLevelDaoBase

public AcquisitionLevelDaoBase()
Method Detail

load

public java.lang.Object load(int transform,
                             java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.load(java.lang.String) 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.

Specified by:
load in interface AcquisitionLevelDao
code - identifier of the entity to load
Returns:
either the entity or the object transformed from the entity.
See Also:
AcquisitionLevelDao.load(int, java.lang.String)

load

public AcquisitionLevel load(java.lang.String code)
Description copied from interface: AcquisitionLevelDao
Loads an instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel from the persistent store.

Specified by:
load in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.load(java.lang.String)

loadAll

public java.util.Collection loadAll()
Description copied from interface: AcquisitionLevelDao
Loads all entities of type AcquisitionLevel.

Specified by:
loadAll in interface AcquisitionLevelDao
Returns:
the loaded entities.
See Also:
AcquisitionLevelDao.loadAll()

loadAll

public java.util.Collection loadAll(int transform)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.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.

Specified by:
loadAll in interface AcquisitionLevelDao
Parameters:
transform - the flag indicating what transformation to use.
Returns:
the loaded entities.
See Also:
AcquisitionLevelDao.loadAll(int)

loadAll

public java.util.Collection loadAll(int pageNumber,
                                    int pageSize)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.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.

Specified by:
loadAll in interface AcquisitionLevelDao
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.
See Also:
AcquisitionLevelDao.loadAll(int, int)

loadAll

public java.util.Collection loadAll(int transform,
                                    int pageNumber,
                                    int pageSize)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.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.

Specified by:
loadAll in interface AcquisitionLevelDao
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.
See Also:
AcquisitionLevelDao.loadAll(int, int, int)

create

public AcquisitionLevel create(AcquisitionLevel acquisitionLevel)
Description copied from interface: AcquisitionLevelDao
Creates an instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel and adds it to the persistent store.

Specified by:
create in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.create(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

create

public java.lang.Object create(int transform,
                               AcquisitionLevel acquisitionLevel)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.create(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel) 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.

Specified by:
create in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.create(int transform, fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

create

public java.util.Collection create(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Creates a new instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel and adds from the passed in entities collection

Specified by:
create in interface AcquisitionLevelDao
Parameters:
entities - the collection of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel instances to create.
Returns:
the created instances.
See Also:
AcquisitionLevelDao.create(java.util.Collection)

create

public java.util.Collection create(int transform,
                                   java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.create(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel) 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.

Specified by:
create in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.create(int, java.util.Collection)

create

public AcquisitionLevel create(java.lang.String code,
                               java.lang.String name)
Description copied from interface: AcquisitionLevelDao

Creates a new fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel instance from all attributes and properties and adds it to the persistent store.

Specified by:
create in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.create(java.lang.String,java.lang.String)

create

public java.lang.Object create(int transform,
                               java.lang.String code,
                               java.lang.String name)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.create(java.lang.String,java.lang.String) 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.

Specified by:
create in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.create(int, java.lang.String,java.lang.String)

update

public void update(AcquisitionLevel acquisitionLevel)
Description copied from interface: AcquisitionLevelDao
Updates the acquisitionLevel instance in the persistent store.

Specified by:
update in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.update(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

update

public void update(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Updates all instances in the entities collection in the persistent store.

Specified by:
update in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.update(java.util.Collection)

remove

public void remove(AcquisitionLevel acquisitionLevel)
Description copied from interface: AcquisitionLevelDao
Removes the instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel from the persistent store.

Specified by:
remove in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.remove(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

remove

public void remove(java.lang.String code)
Description copied from interface: AcquisitionLevelDao
Removes the instance of fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel having the given identifier from the persistent store.

Specified by:
remove in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.remove(java.lang.String)

remove

public void remove(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Removes all entities in the given entities collection.

Specified by:
remove in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.remove(java.util.Collection)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel()
Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel()

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(int transform)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel() 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.

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(int)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(java.lang.String queryString)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel() with an additional argument called queryString. This queryString argument allows you to override the query string defined in AcquisitionLevelDao.getAllAcquisitionLevel().

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(java.lang.String)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(int pageNumber,
                                                   int pageSize)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel() 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.

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(int, int)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(java.lang.String queryString,
                                                   int pageNumber,
                                                   int pageSize)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(String) 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.

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(String, int, int)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(int transform,
                                                   java.lang.String queryString)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(int) with an additional argument called queryString. This queryString argument allows you to override the query string defined in AcquisitionLevelDao.getAllAcquisitionLevel(int).

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(int, String)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(int transform,
                                                   int pageNumber,
                                                   int pageSize)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(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.

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(int, int, int)

getAllAcquisitionLevel

public java.util.Collection getAllAcquisitionLevel(int transform,
                                                   java.lang.String queryString,
                                                   int pageNumber,
                                                   int pageSize)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.getAllAcquisitionLevel(int, String) 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.

Specified by:
getAllAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllAcquisitionLevel(int, java.lang.String, int, int)

findAcquisitionLevelByCode

public AcquisitionLevel findAcquisitionLevelByCode(java.lang.String code)
Specified by:
findAcquisitionLevelByCode in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String)

findAcquisitionLevelByCode

public java.lang.Object findAcquisitionLevelByCode(int transform,
                                                   java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String) 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.

Specified by:
findAcquisitionLevelByCode in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByCode(int, java.lang.String)

findAcquisitionLevelByCode

public AcquisitionLevel findAcquisitionLevelByCode(java.lang.String queryString,
                                                   java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String) with an additional argument called queryString. This queryString argument allows you to override the query string defined in AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String).

Specified by:
findAcquisitionLevelByCode in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByCode(java.lang.String, java.lang.String)

findAcquisitionLevelByCode

public java.lang.Object findAcquisitionLevelByCode(int transform,
                                                   java.lang.String queryString,
                                                   java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByCode(int, java.lang.String) with an additional argument called queryString. This queryString argument allows you to override the query string defined in AcquisitionLevelDao.findAcquisitionLevelByCode(int, java.lang.String code).

Specified by:
findAcquisitionLevelByCode in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByCode(int, java.lang.String, java.lang.String)

findAcquisitionLevelByNaturalId

public AcquisitionLevel findAcquisitionLevelByNaturalId(java.lang.String code)
Specified by:
findAcquisitionLevelByNaturalId in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String)

findAcquisitionLevelByNaturalId

public java.lang.Object findAcquisitionLevelByNaturalId(int transform,
                                                        java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String) 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.

Specified by:
findAcquisitionLevelByNaturalId in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByNaturalId(int, java.lang.String)

findAcquisitionLevelByNaturalId

public AcquisitionLevel findAcquisitionLevelByNaturalId(java.lang.String queryString,
                                                        java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String) with an additional argument called queryString. This queryString argument allows you to override the query string defined in AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String).

Specified by:
findAcquisitionLevelByNaturalId in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByNaturalId(java.lang.String, java.lang.String)

findAcquisitionLevelByNaturalId

public java.lang.Object findAcquisitionLevelByNaturalId(int transform,
                                                        java.lang.String queryString,
                                                        java.lang.String code)
Description copied from interface: AcquisitionLevelDao

Does the same thing as AcquisitionLevelDao.findAcquisitionLevelByNaturalId(int, java.lang.String) with an additional argument called queryString. This queryString argument allows you to override the query string defined in AcquisitionLevelDao.findAcquisitionLevelByNaturalId(int, java.lang.String code).

Specified by:
findAcquisitionLevelByNaturalId in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.findAcquisitionLevelByNaturalId(int, java.lang.String, java.lang.String)

createFromClusterAcquisitionLevel

public AcquisitionLevel createFromClusterAcquisitionLevel(ClusterAcquisitionLevel clusterAcquisitionLevel)
Specified by:
createFromClusterAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.createFromClusterAcquisitionLevel(fr.ifremer.allegro.administration.programStrategy.generic.cluster.ClusterAcquisitionLevel)

handleCreateFromClusterAcquisitionLevel

protected abstract AcquisitionLevel handleCreateFromClusterAcquisitionLevel(ClusterAcquisitionLevel clusterAcquisitionLevel)
                                                                     throws java.lang.Exception
Performs the core logic for createFromClusterAcquisitionLevel(fr.ifremer.allegro.administration.programStrategy.generic.cluster.ClusterAcquisitionLevel)

Throws:
java.lang.Exception

getAllClusterAcquisitionLevel

public ClusterAcquisitionLevel[] getAllClusterAcquisitionLevel(java.lang.Integer userId,
                                                               java.lang.Integer[] registrationLocationIds,
                                                               java.lang.Integer pageNumber,
                                                               java.lang.Integer pageSize)
Specified by:
getAllClusterAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.getAllClusterAcquisitionLevel(java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)

handleGetAllClusterAcquisitionLevel

protected abstract ClusterAcquisitionLevel[] handleGetAllClusterAcquisitionLevel(java.lang.Integer userId,
                                                                                 java.lang.Integer[] registrationLocationIds,
                                                                                 java.lang.Integer pageNumber,
                                                                                 java.lang.Integer pageSize)
                                                                          throws java.lang.Exception
Performs the core logic for getAllClusterAcquisitionLevel(java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)

Throws:
java.lang.Exception

transformEntity

protected java.lang.Object transformEntity(int transform,
                                           AcquisitionLevel entity)
Allows transformation of entities into value objects (or something else for that matter), when the transform flag is set to one of the constants defined in fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao, please note that the AcquisitionLevelDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be returned.

This method will return instances of these types:

If the integer argument value is unknown AcquisitionLevelDao.TRANSFORM_NONE is assumed.

Parameters:
transform - one of the constants declared in AcquisitionLevelDao
entity - an entity that was found
Returns:
the transformed entity (i.e. new value object, etc)
See Also:
transformEntities(int,java.util.Collection)

transformEntities

protected void transformEntities(int transform,
                                 java.util.Collection entities)
Transforms a collection of entities using the transformEntity(int,fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel) method. This method does not instantiate a new collection.

This method is to be used internally only.

Parameters:
transform - one of the constants declared in fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao
entities - the collection of entities to transform
See Also:
transformEntity(int,fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

toEntity

protected AcquisitionLevel toEntity(java.lang.Object[] row)

toRemoteAcquisitionLevelFullVOCollection

public final void toRemoteAcquisitionLevelFullVOCollection(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to a Collection of instances of type RemoteAcquisitionLevelFullVO.

Specified by:
toRemoteAcquisitionLevelFullVOCollection in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelFullVOCollection(java.util.Collection)

toRemoteAcquisitionLevelFullVOArray

public final RemoteAcquisitionLevelFullVO[] toRemoteAcquisitionLevelFullVOArray(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to an array of instances of type RemoteAcquisitionLevelFullVO.

Specified by:
toRemoteAcquisitionLevelFullVOArray in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelFullVOArray(java.util.Collection)

toRemoteAcquisitionLevelFullVO

protected RemoteAcquisitionLevelFullVO toRemoteAcquisitionLevelFullVO(java.lang.Object[] row)
Default implementation for transforming the results of a report query into a value object. This implementation exists for convenience reasons only. It needs only be overridden in the AcquisitionLevelDaoImpl class if you intend to use reporting queries.

See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelFullVO(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

remoteAcquisitionLevelFullVOToEntityCollection

public final void remoteAcquisitionLevelFullVOToEntityCollection(java.util.Collection instances)
Description copied from interface: AcquisitionLevelDao
Converts a Collection of instances of type RemoteAcquisitionLevelFullVO to this DAO's entity.

Specified by:
remoteAcquisitionLevelFullVOToEntityCollection in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.remoteAcquisitionLevelFullVOToEntityCollection(java.util.Collection)

toRemoteAcquisitionLevelFullVO

public void toRemoteAcquisitionLevelFullVO(AcquisitionLevel source,
                                           RemoteAcquisitionLevelFullVO target)
Description copied from interface: AcquisitionLevelDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteAcquisitionLevelFullVO(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).

Specified by:
toRemoteAcquisitionLevelFullVO in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelFullVO(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel, fr.ifremer.allegro.administration.programStrategy.generic.vo.RemoteAcquisitionLevelFullVO)

toRemoteAcquisitionLevelFullVO

public RemoteAcquisitionLevelFullVO toRemoteAcquisitionLevelFullVO(AcquisitionLevel entity)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to an object of type RemoteAcquisitionLevelFullVO.

Specified by:
toRemoteAcquisitionLevelFullVO in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelFullVO(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

remoteAcquisitionLevelFullVOToEntity

public void remoteAcquisitionLevelFullVOToEntity(RemoteAcquisitionLevelFullVO source,
                                                 AcquisitionLevel target,
                                                 boolean copyIfNull)
Description copied from interface: AcquisitionLevelDao
Copies the fields of RemoteAcquisitionLevelFullVO to the specified entity.

Specified by:
remoteAcquisitionLevelFullVOToEntity in interface AcquisitionLevelDao
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.
See Also:
fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao#remoteAcquisitionLevelFullVOToEntity(fr.ifremer.allegro.administration.programStrategy.generic.vo.RemoteAcquisitionLevelFullVO, fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

toRemoteAcquisitionLevelNaturalIdCollection

public final void toRemoteAcquisitionLevelNaturalIdCollection(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to a Collection of instances of type RemoteAcquisitionLevelNaturalId.

Specified by:
toRemoteAcquisitionLevelNaturalIdCollection in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelNaturalIdCollection(java.util.Collection)

toRemoteAcquisitionLevelNaturalIdArray

public final RemoteAcquisitionLevelNaturalId[] toRemoteAcquisitionLevelNaturalIdArray(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to an array of instances of type RemoteAcquisitionLevelNaturalId.

Specified by:
toRemoteAcquisitionLevelNaturalIdArray in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelNaturalIdArray(java.util.Collection)

toRemoteAcquisitionLevelNaturalId

protected RemoteAcquisitionLevelNaturalId toRemoteAcquisitionLevelNaturalId(java.lang.Object[] row)
Default implementation for transforming the results of a report query into a value object. This implementation exists for convenience reasons only. It needs only be overridden in the AcquisitionLevelDaoImpl class if you intend to use reporting queries.

See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelNaturalId(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

remoteAcquisitionLevelNaturalIdToEntityCollection

public final void remoteAcquisitionLevelNaturalIdToEntityCollection(java.util.Collection instances)
Description copied from interface: AcquisitionLevelDao
Converts a Collection of instances of type RemoteAcquisitionLevelNaturalId to this DAO's entity.

Specified by:
remoteAcquisitionLevelNaturalIdToEntityCollection in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.remoteAcquisitionLevelNaturalIdToEntityCollection(java.util.Collection)

toRemoteAcquisitionLevelNaturalId

public void toRemoteAcquisitionLevelNaturalId(AcquisitionLevel source,
                                              RemoteAcquisitionLevelNaturalId target)
Description copied from interface: AcquisitionLevelDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteAcquisitionLevelNaturalId(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).

Specified by:
toRemoteAcquisitionLevelNaturalId in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelNaturalId(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel, fr.ifremer.allegro.administration.programStrategy.generic.vo.RemoteAcquisitionLevelNaturalId)

toRemoteAcquisitionLevelNaturalId

public RemoteAcquisitionLevelNaturalId toRemoteAcquisitionLevelNaturalId(AcquisitionLevel entity)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to an object of type RemoteAcquisitionLevelNaturalId.

Specified by:
toRemoteAcquisitionLevelNaturalId in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toRemoteAcquisitionLevelNaturalId(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

remoteAcquisitionLevelNaturalIdToEntity

public void remoteAcquisitionLevelNaturalIdToEntity(RemoteAcquisitionLevelNaturalId source,
                                                    AcquisitionLevel target,
                                                    boolean copyIfNull)
Description copied from interface: AcquisitionLevelDao
Copies the fields of RemoteAcquisitionLevelNaturalId to the specified entity.

Specified by:
remoteAcquisitionLevelNaturalIdToEntity in interface AcquisitionLevelDao
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.
See Also:
fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao#remoteAcquisitionLevelNaturalIdToEntity(fr.ifremer.allegro.administration.programStrategy.generic.vo.RemoteAcquisitionLevelNaturalId, fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

toClusterAcquisitionLevelCollection

public final void toClusterAcquisitionLevelCollection(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to a Collection of instances of type ClusterAcquisitionLevel.

Specified by:
toClusterAcquisitionLevelCollection in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toClusterAcquisitionLevelCollection(java.util.Collection)

toClusterAcquisitionLevelArray

public final ClusterAcquisitionLevel[] toClusterAcquisitionLevelArray(java.util.Collection entities)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to an array of instances of type ClusterAcquisitionLevel.

Specified by:
toClusterAcquisitionLevelArray in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toClusterAcquisitionLevelArray(java.util.Collection)

toClusterAcquisitionLevel

protected ClusterAcquisitionLevel toClusterAcquisitionLevel(java.lang.Object[] row)
Default implementation for transforming the results of a report query into a value object. This implementation exists for convenience reasons only. It needs only be overridden in the AcquisitionLevelDaoImpl class if you intend to use reporting queries.

See Also:
AcquisitionLevelDao.toClusterAcquisitionLevel(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

clusterAcquisitionLevelToEntityCollection

public final void clusterAcquisitionLevelToEntityCollection(java.util.Collection instances)
Description copied from interface: AcquisitionLevelDao
Converts a Collection of instances of type ClusterAcquisitionLevel to this DAO's entity.

Specified by:
clusterAcquisitionLevelToEntityCollection in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.clusterAcquisitionLevelToEntityCollection(java.util.Collection)

toClusterAcquisitionLevel

public void toClusterAcquisitionLevel(AcquisitionLevel source,
                                      ClusterAcquisitionLevel target)
Description copied from interface: AcquisitionLevelDao
Copies the fields of the specified entity to the target value object. This method is similar to toClusterAcquisitionLevel(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).

Specified by:
toClusterAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toClusterAcquisitionLevel(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel, fr.ifremer.allegro.administration.programStrategy.generic.cluster.ClusterAcquisitionLevel)

toClusterAcquisitionLevel

public ClusterAcquisitionLevel toClusterAcquisitionLevel(AcquisitionLevel entity)
Description copied from interface: AcquisitionLevelDao
Converts this DAO's entity to an object of type ClusterAcquisitionLevel.

Specified by:
toClusterAcquisitionLevel in interface AcquisitionLevelDao
See Also:
AcquisitionLevelDao.toClusterAcquisitionLevel(fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

clusterAcquisitionLevelToEntity

public void clusterAcquisitionLevelToEntity(ClusterAcquisitionLevel source,
                                            AcquisitionLevel target,
                                            boolean copyIfNull)
Description copied from interface: AcquisitionLevelDao
Copies the fields of ClusterAcquisitionLevel to the specified entity.

Specified by:
clusterAcquisitionLevelToEntity in interface AcquisitionLevelDao
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.
See Also:
fr.ifremer.allegro.administration.programStrategy.AcquisitionLevelDao#clusterAcquisitionLevelToEntity(fr.ifremer.allegro.administration.programStrategy.generic.cluster.ClusterAcquisitionLevel, fr.ifremer.allegro.administration.programStrategy.AcquisitionLevel)

getPrincipal

protected java.security.Principal getPrincipal()
Gets the current principal if one has been set, otherwise returns null.

Returns:
the current principal

search

public PaginationResult search(int transform,
                               int pageNumber,
                               int pageSize,
                               Search search)
Description copied from interface: AcquisitionLevelDao
Does the same thing as {@link #search(int, fr.ifremer.allegro.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.

Specified by:
search in interface AcquisitionLevelDao
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.
See Also:
AcquisitionLevelDao.search(int, int, int, fr.ifremer.allegro.Search)

search

public PaginationResult search(int pageNumber,
                               int pageSize,
                               Search search)
Description copied from interface: AcquisitionLevelDao
Does the same thing as {@link #search(fr.ifremer.allegro.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.

Specified by:
search in interface AcquisitionLevelDao
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.
See Also:
AcquisitionLevelDao.search(int, int, fr.ifremer.allegro.Search)

search

public java.util.Set search(int transform,
                            Search search)
Description copied from interface: AcquisitionLevelDao
Does the same thing as AcquisitionLevelDao.search(fr.ifremer.allegro.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.

Specified by:
search in interface AcquisitionLevelDao
Parameters:
transform - the transformation flag.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search.
See Also:
AcquisitionLevelDao.search(int, fr.ifremer.allegro.Search)

search

public java.util.Set search(Search search)
Description copied from interface: AcquisitionLevelDao
Performs a search using the parameters specified in the given search object.

Specified by:
search in interface AcquisitionLevelDao
Parameters:
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search.
See Also:
AcquisitionLevelDao.search(fr.ifremer.allegro.Search)


Copyright © 2008-2010 IFREMER. All Rights Reserved.