fr.ifremer.allegro.referential.taxon
Class TaxonNameDaoBase

java.lang.Object
  extended by org.springframework.orm.hibernate3.support.HibernateDaoSupport
      extended by fr.ifremer.allegro.referential.taxon.TaxonNameDaoBase
All Implemented Interfaces:
TaxonNameDao
Direct Known Subclasses:
TaxonNameDaoImpl

public abstract class TaxonNameDaoBase
extends org.springframework.orm.hibernate3.support.HibernateDaoSupport
implements TaxonNameDao

Base Spring DAO Class: is able to create, update, remove, load, and find objects of type fr.ifremer.allegro.referential.taxon.TaxonName.

See Also:
TaxonName

Field Summary
 
Fields inherited from interface fr.ifremer.allegro.referential.taxon.TaxonNameDao
TRANSFORM_CLUSTERTAXONNAME, TRANSFORM_NONE, TRANSFORM_REMOTETAXONNAMEFULLVO, TRANSFORM_REMOTETAXONNAMENATURALID
 
Constructor Summary
TaxonNameDaoBase()
           
 
Method Summary
 void clusterTaxonNameToEntity(ClusterTaxonName source, TaxonName target, boolean copyIfNull)
          Copies the fields of ClusterTaxonName to the specified entity.
 void clusterTaxonNameToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterTaxonName to this DAO's entity.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds from the passed in entities collection
 TaxonName create(java.util.Date creationDate, java.lang.Boolean isNaming, java.lang.Boolean isObsolete, java.lang.Boolean isReferent, java.lang.Boolean isTemporary, java.lang.Boolean isVirtual, java.lang.String name, ReferenceTaxon referenceTaxon, java.util.Date startDate, TaxonomicLevel taxonomicLevel, java.lang.Integer upperRank)
           Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from only required properties (attributes and association ends) and adds it to the persistent store.
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as TaxonNameDao.create(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional flag called transform.
 java.lang.Object create(int transform, java.util.Date creationDate, java.lang.Boolean isNaming, java.lang.Boolean isObsolete, java.lang.Boolean isReferent, java.lang.Boolean isTemporary, java.lang.Boolean isVirtual, java.lang.String name, ReferenceTaxon referenceTaxon, java.util.Date startDate, TaxonomicLevel taxonomicLevel, java.lang.Integer upperRank)
           Does the same thing as TaxonNameDao.create(java.util.Date,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Date,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.lang.Integer) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String name, java.lang.String completeName, java.lang.Boolean isNaming, java.lang.Boolean isReferent, java.lang.Integer upperRank, java.lang.Boolean isVirtual, java.lang.Boolean isObsolete, java.lang.Boolean isTemporary, java.util.Date startDate, java.util.Date endDate, java.lang.String comments, java.util.Date creationDate, java.sql.Timestamp updateDate, ReferenceTaxon referenceTaxon, java.util.Collection childTaxonNames, TaxonName parentTaxonName, TaxonomicLevel taxonomicLevel, java.util.Collection taxonNamehistory, java.util.Collection parentTaxonNameHistory, Citation citation)
           Does the same thing as TaxonNameDao.create(java.lang.String,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.util.Date,java.util.Date,java.lang.String,java.util.Date,java.sql.Timestamp,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Collection,fr.ifremer.allegro.referential.taxon.TaxonName,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.util.Collection,java.util.Collection,fr.ifremer.allegro.referential.taxon.Citation) with an additional flag called transform.
 java.lang.Object create(int transform, TaxonName taxonName)
           Does the same thing as TaxonNameDao.create(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional flag called transform.
 TaxonName create(java.lang.String name, java.lang.String completeName, java.lang.Boolean isNaming, java.lang.Boolean isReferent, java.lang.Integer upperRank, java.lang.Boolean isVirtual, java.lang.Boolean isObsolete, java.lang.Boolean isTemporary, java.util.Date startDate, java.util.Date endDate, java.lang.String comments, java.util.Date creationDate, java.sql.Timestamp updateDate, ReferenceTaxon referenceTaxon, java.util.Collection childTaxonNames, TaxonName parentTaxonName, TaxonomicLevel taxonomicLevel, java.util.Collection taxonNamehistory, java.util.Collection parentTaxonNameHistory, Citation citation)
           Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from all attributes and properties and adds it to the persistent store.
 TaxonName create(TaxonName taxonName)
          Creates an instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds it to the persistent store.
 TaxonName createFromClusterTaxonName(ClusterTaxonName clusterTaxonName)
           
 java.util.Collection findTaxonNameByCitation(Citation citation)
           
 java.util.Collection findTaxonNameByCitation(int transform, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional flag called transform.
 java.util.Collection findTaxonNameByCitation(int pageNumber, int pageSize, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByCitation(int transform, int pageNumber, int pageSize, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByCitation(int transform, java.lang.String queryString, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) with an additional argument called queryString.
 java.util.Collection findTaxonNameByCitation(int transform, java.lang.String queryString, int pageNumber, int pageSize, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(int, String, fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByCitation(java.lang.String queryString, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional argument called queryString.
 java.util.Collection findTaxonNameByCitation(java.lang.String queryString, int pageNumber, int pageSize, Citation citation)
           Does the same thing as TaxonNameDao.findTaxonNameByCitation(String, fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 TaxonName findTaxonNameById(java.lang.Integer id)
           
 java.lang.Object findTaxonNameById(int transform, java.lang.Integer id)
           Does the same thing as TaxonNameDao.findTaxonNameById(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findTaxonNameById(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as TaxonNameDao.findTaxonNameById(int, java.lang.Integer) with an additional argument called queryString.
 TaxonName findTaxonNameById(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as TaxonNameDao.findTaxonNameById(java.lang.Integer) with an additional argument called queryString.
 TaxonName findTaxonNameByNaturalId(java.lang.Integer id)
           
 java.lang.Object findTaxonNameByNaturalId(int transform, java.lang.Integer id)
           Does the same thing as TaxonNameDao.findTaxonNameByNaturalId(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findTaxonNameByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as TaxonNameDao.findTaxonNameByNaturalId(int, java.lang.Integer) with an additional argument called queryString.
 TaxonName findTaxonNameByNaturalId(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as TaxonNameDao.findTaxonNameByNaturalId(java.lang.Integer) with an additional argument called queryString.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, java.lang.String queryString, int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(int, String, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, java.lang.String queryString, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional argument called queryString.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional flag called transform.
 java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString, int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(String, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString, TaxonName parentTaxonName)
           Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional argument called queryString.
 java.util.Collection findTaxonNameByParentTaxonName(TaxonName parentTaxonName)
           
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional flag called transform.
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, java.lang.String queryString, int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(int, String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, java.lang.String queryString, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional argument called queryString.
 java.util.Collection findTaxonNameByReferenceTaxon(ReferenceTaxon referenceTaxon)
           
 java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString, int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString, ReferenceTaxon referenceTaxon)
           Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional argument called queryString.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, java.lang.String queryString, int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(int, String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, java.lang.String queryString, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional argument called queryString.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional flag called transform.
 java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString, int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString, TaxonomicLevel taxonomicLevel)
           Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional argument called queryString.
 java.util.Collection findTaxonNameByTaxonomicLevel(TaxonomicLevel taxonomicLevel)
           
 ClusterTaxonName[] getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
           
 java.util.Collection getAllTaxonName()
           
 java.util.Collection getAllTaxonName(int transform)
           Does the same thing as TaxonNameDao.getAllTaxonName() with an additional flag called transform.
 java.util.Collection getAllTaxonName(int pageNumber, int pageSize)
           Does the same thing as TaxonNameDao.getAllTaxonName() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonName(int transform, int pageNumber, int pageSize)
           Does the same thing as TaxonNameDao.getAllTaxonName(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonName(int transform, java.lang.String queryString)
           Does the same thing as TaxonNameDao.getAllTaxonName(int) with an additional argument called queryString.
 java.util.Collection getAllTaxonName(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as TaxonNameDao.getAllTaxonName(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonName(java.lang.String queryString)
           Does the same thing as TaxonNameDao.getAllTaxonName() with an additional argument called queryString.
 java.util.Collection getAllTaxonName(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as TaxonNameDao.getAllTaxonName(String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional flag called transform.
 java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllTaxonNameSinceDateSynchro(java.sql.Timestamp updateDate)
           
protected  CitationDao getCitationDao()
          Gets the reference to citationDao.
protected  java.security.Principal getPrincipal()
          Gets the current principal if one has been set, otherwise returns null.
protected  ReferenceTaxonDao getReferenceTaxonDao()
          Gets the reference to referenceTaxonDao.
protected  TaxonNameDao getTaxonNameDao()
          Gets the reference to taxonNameDao.
protected  TaxonNameHistoryDao getTaxonNameHistoryDao()
          Gets the reference to taxonNameHistoryDao.
protected  TaxonomicLevelDao getTaxonomicLevelDao()
          Gets the reference to taxonomicLevelDao.
protected abstract  TaxonName handleCreateFromClusterTaxonName(ClusterTaxonName clusterTaxonName)
          Performs the core logic for createFromClusterTaxonName(fr.ifremer.allegro.referential.taxon.generic.cluster.ClusterTaxonName)
protected abstract  ClusterTaxonName[] handleGetAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
          Performs the core logic for getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)
 TaxonName load(java.lang.Integer id)
          Loads an instance of fr.ifremer.allegro.referential.taxon.TaxonName from the persistent store.
 java.lang.Object load(int transform, java.lang.Integer id)
           Does the same thing as TaxonNameDao.load(java.lang.Integer) with an additional flag called transform.
 java.util.Collection loadAll()
          Loads all entities of type TaxonName.
 java.util.Collection loadAll(int transform)
           Does the same thing as TaxonNameDao.loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as TaxonNameDao.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 TaxonNameDao.loadAll(int) with an additional two arguments called pageNumber and pageSize.
 void remoteTaxonNameFullVOToEntity(RemoteTaxonNameFullVO source, TaxonName target, boolean copyIfNull)
          Copies the fields of RemoteTaxonNameFullVO to the specified entity.
 void remoteTaxonNameFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteTaxonNameFullVO to this DAO's entity.
 void remoteTaxonNameNaturalIdToEntity(RemoteTaxonNameNaturalId source, TaxonName target, boolean copyIfNull)
          Copies the fields of RemoteTaxonNameNaturalId to the specified entity.
 void remoteTaxonNameNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteTaxonNameNaturalId to this DAO's entity.
 void remove(java.util.Collection entities)
          Removes all entities in the given entities collection.
 void remove(java.lang.Integer id)
          Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName having the given identifier from the persistent store.
 void remove(TaxonName taxonName)
          Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName 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 TaxonNameDao.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.
 void setCitationDao(CitationDao citationDao)
          Sets the reference to citationDao.
 void setReferenceTaxonDao(ReferenceTaxonDao referenceTaxonDao)
          Sets the reference to referenceTaxonDao.
 void setTaxonNameDao(TaxonNameDao taxonNameDao)
          Sets the reference to taxonNameDao.
 void setTaxonNameHistoryDao(TaxonNameHistoryDao taxonNameHistoryDao)
          Sets the reference to taxonNameHistoryDao.
 void setTaxonomicLevelDao(TaxonomicLevelDao taxonomicLevelDao)
          Sets the reference to taxonomicLevelDao.
protected  ClusterTaxonName toClusterTaxonName(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 ClusterTaxonName toClusterTaxonName(TaxonName entity)
          Converts this DAO's entity to an object of type ClusterTaxonName.
 void toClusterTaxonName(TaxonName source, ClusterTaxonName target)
          Copies the fields of the specified entity to the target value object.
 ClusterTaxonName[] toClusterTaxonNameArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterTaxonName.
 void toClusterTaxonNameCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterTaxonName.
protected  TaxonName toEntity(java.lang.Object[] row)
           
protected  RemoteTaxonNameFullVO toRemoteTaxonNameFullVO(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemoteTaxonNameFullVO toRemoteTaxonNameFullVO(TaxonName entity)
          Converts this DAO's entity to an object of type RemoteTaxonNameFullVO.
 void toRemoteTaxonNameFullVO(TaxonName source, RemoteTaxonNameFullVO target)
          Copies the fields of the specified entity to the target value object.
 RemoteTaxonNameFullVO[] toRemoteTaxonNameFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteTaxonNameFullVO.
 void toRemoteTaxonNameFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteTaxonNameFullVO.
protected  RemoteTaxonNameNaturalId toRemoteTaxonNameNaturalId(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemoteTaxonNameNaturalId toRemoteTaxonNameNaturalId(TaxonName entity)
          Converts this DAO's entity to an object of type RemoteTaxonNameNaturalId.
 void toRemoteTaxonNameNaturalId(TaxonName source, RemoteTaxonNameNaturalId target)
          Copies the fields of the specified entity to the target value object.
 RemoteTaxonNameNaturalId[] toRemoteTaxonNameNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteTaxonNameNaturalId.
 void toRemoteTaxonNameNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteTaxonNameNaturalId.
protected  void transformEntities(int transform, java.util.Collection entities)
          Transforms a collection of entities using the transformEntity(int,fr.ifremer.allegro.referential.taxon.TaxonName) method.
protected  java.lang.Object transformEntity(int transform, TaxonName 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.referential.taxon.TaxonNameDao, please note that the TaxonNameDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be returned.
 void update(java.util.Collection entities)
          Updates all instances in the entities collection in the persistent store.
 void update(TaxonName taxonName)
          Updates the taxonName instance 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.referential.taxon.TaxonNameDao
clusterTaxonNameToEntity, remoteTaxonNameFullVOToEntity, remoteTaxonNameNaturalIdToEntity
 

Constructor Detail

TaxonNameDaoBase

public TaxonNameDaoBase()
Method Detail

setReferenceTaxonDao

public void setReferenceTaxonDao(ReferenceTaxonDao referenceTaxonDao)
Sets the reference to referenceTaxonDao.


getReferenceTaxonDao

protected ReferenceTaxonDao getReferenceTaxonDao()
Gets the reference to referenceTaxonDao.


setTaxonomicLevelDao

public void setTaxonomicLevelDao(TaxonomicLevelDao taxonomicLevelDao)
Sets the reference to taxonomicLevelDao.


getTaxonomicLevelDao

protected TaxonomicLevelDao getTaxonomicLevelDao()
Gets the reference to taxonomicLevelDao.


setCitationDao

public void setCitationDao(CitationDao citationDao)
Sets the reference to citationDao.


getCitationDao

protected CitationDao getCitationDao()
Gets the reference to citationDao.


setTaxonNameDao

public void setTaxonNameDao(TaxonNameDao taxonNameDao)
Sets the reference to taxonNameDao.


getTaxonNameDao

protected TaxonNameDao getTaxonNameDao()
Gets the reference to taxonNameDao.


setTaxonNameHistoryDao

public void setTaxonNameHistoryDao(TaxonNameHistoryDao taxonNameHistoryDao)
Sets the reference to taxonNameHistoryDao.


getTaxonNameHistoryDao

protected TaxonNameHistoryDao getTaxonNameHistoryDao()
Gets the reference to taxonNameHistoryDao.


load

public java.lang.Object load(int transform,
                             java.lang.Integer id)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.load(java.lang.Integer) 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 TaxonNameDao
id - identifier of the entity to load
Returns:
either the entity or the object transformed from the entity.
See Also:
TaxonNameDao.load(int, java.lang.Integer)

load

public TaxonName load(java.lang.Integer id)
Description copied from interface: TaxonNameDao
Loads an instance of fr.ifremer.allegro.referential.taxon.TaxonName from the persistent store.

Specified by:
load in interface TaxonNameDao
See Also:
TaxonNameDao.load(java.lang.Integer)

loadAll

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

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

loadAll

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

Does the same thing as TaxonNameDao.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 TaxonNameDao
Parameters:
transform - the flag indicating what transformation to use.
Returns:
the loaded entities.
See Also:
TaxonNameDao.loadAll(int)

loadAll

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

Does the same thing as TaxonNameDao.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 TaxonNameDao
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:
TaxonNameDao.loadAll(int, int)

loadAll

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

Does the same thing as TaxonNameDao.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 TaxonNameDao
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:
TaxonNameDao.loadAll(int, int, int)

create

public TaxonName create(TaxonName taxonName)
Description copied from interface: TaxonNameDao
Creates an instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds it to the persistent store.

Specified by:
create in interface TaxonNameDao
See Also:
TaxonNameDao.create(fr.ifremer.allegro.referential.taxon.TaxonName)

create

public java.lang.Object create(int transform,
                               TaxonName taxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.create(fr.ifremer.allegro.referential.taxon.TaxonName) 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 TaxonNameDao
See Also:
TaxonNameDao.create(int transform, fr.ifremer.allegro.referential.taxon.TaxonName)

create

public java.util.Collection create(java.util.Collection entities)
Description copied from interface: TaxonNameDao
Creates a new instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds from the passed in entities collection

Specified by:
create in interface TaxonNameDao
Parameters:
entities - the collection of fr.ifremer.allegro.referential.taxon.TaxonName instances to create.
Returns:
the created instances.
See Also:
TaxonNameDao.create(java.util.Collection)

create

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

Does the same thing as TaxonNameDao.create(fr.ifremer.allegro.referential.taxon.TaxonName) 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 TaxonNameDao
See Also:
TaxonNameDao.create(int, java.util.Collection)

create

public TaxonName create(java.lang.String name,
                        java.lang.String completeName,
                        java.lang.Boolean isNaming,
                        java.lang.Boolean isReferent,
                        java.lang.Integer upperRank,
                        java.lang.Boolean isVirtual,
                        java.lang.Boolean isObsolete,
                        java.lang.Boolean isTemporary,
                        java.util.Date startDate,
                        java.util.Date endDate,
                        java.lang.String comments,
                        java.util.Date creationDate,
                        java.sql.Timestamp updateDate,
                        ReferenceTaxon referenceTaxon,
                        java.util.Collection childTaxonNames,
                        TaxonName parentTaxonName,
                        TaxonomicLevel taxonomicLevel,
                        java.util.Collection taxonNamehistory,
                        java.util.Collection parentTaxonNameHistory,
                        Citation citation)
Description copied from interface: TaxonNameDao

Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from all attributes and properties and adds it to the persistent store.

Specified by:
create in interface TaxonNameDao
See Also:
TaxonNameDao.create(java.lang.String,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.util.Date,java.util.Date,java.lang.String,java.util.Date,java.sql.Timestamp,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Collection,fr.ifremer.allegro.referential.taxon.TaxonName,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.util.Collection,java.util.Collection,fr.ifremer.allegro.referential.taxon.Citation)

create

public java.lang.Object create(int transform,
                               java.lang.String name,
                               java.lang.String completeName,
                               java.lang.Boolean isNaming,
                               java.lang.Boolean isReferent,
                               java.lang.Integer upperRank,
                               java.lang.Boolean isVirtual,
                               java.lang.Boolean isObsolete,
                               java.lang.Boolean isTemporary,
                               java.util.Date startDate,
                               java.util.Date endDate,
                               java.lang.String comments,
                               java.util.Date creationDate,
                               java.sql.Timestamp updateDate,
                               ReferenceTaxon referenceTaxon,
                               java.util.Collection childTaxonNames,
                               TaxonName parentTaxonName,
                               TaxonomicLevel taxonomicLevel,
                               java.util.Collection taxonNamehistory,
                               java.util.Collection parentTaxonNameHistory,
                               Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.create(java.lang.String,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.util.Date,java.util.Date,java.lang.String,java.util.Date,java.sql.Timestamp,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Collection,fr.ifremer.allegro.referential.taxon.TaxonName,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.util.Collection,java.util.Collection,fr.ifremer.allegro.referential.taxon.Citation) 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 TaxonNameDao
See Also:
TaxonNameDao.create(int, java.lang.String,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.util.Date,java.util.Date,java.lang.String,java.util.Date,java.sql.Timestamp,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Collection,fr.ifremer.allegro.referential.taxon.TaxonName,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.util.Collection,java.util.Collection,fr.ifremer.allegro.referential.taxon.Citation)

create

public TaxonName create(java.util.Date creationDate,
                        java.lang.Boolean isNaming,
                        java.lang.Boolean isObsolete,
                        java.lang.Boolean isReferent,
                        java.lang.Boolean isTemporary,
                        java.lang.Boolean isVirtual,
                        java.lang.String name,
                        ReferenceTaxon referenceTaxon,
                        java.util.Date startDate,
                        TaxonomicLevel taxonomicLevel,
                        java.lang.Integer upperRank)
Description copied from interface: TaxonNameDao

Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from only required properties (attributes and association ends) and adds it to the persistent store.

Specified by:
create in interface TaxonNameDao
See Also:
TaxonNameDao.create(java.util.Date,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Date,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.lang.Integer)

create

public java.lang.Object create(int transform,
                               java.util.Date creationDate,
                               java.lang.Boolean isNaming,
                               java.lang.Boolean isObsolete,
                               java.lang.Boolean isReferent,
                               java.lang.Boolean isTemporary,
                               java.lang.Boolean isVirtual,
                               java.lang.String name,
                               ReferenceTaxon referenceTaxon,
                               java.util.Date startDate,
                               TaxonomicLevel taxonomicLevel,
                               java.lang.Integer upperRank)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.create(java.util.Date,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Date,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.lang.Integer) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOTWILL 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 TaxonNameDao
See Also:
TaxonNameDao.create(int, java.util.Date,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Date,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.lang.Integer)

update

public void update(TaxonName taxonName)
Description copied from interface: TaxonNameDao
Updates the taxonName instance in the persistent store.

Specified by:
update in interface TaxonNameDao
See Also:
TaxonNameDao.update(fr.ifremer.allegro.referential.taxon.TaxonName)

update

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

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

remove

public void remove(TaxonName taxonName)
Description copied from interface: TaxonNameDao
Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName from the persistent store.

Specified by:
remove in interface TaxonNameDao
See Also:
TaxonNameDao.remove(fr.ifremer.allegro.referential.taxon.TaxonName)

remove

public void remove(java.lang.Integer id)
Description copied from interface: TaxonNameDao
Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName having the given identifier from the persistent store.

Specified by:
remove in interface TaxonNameDao
See Also:
TaxonNameDao.remove(java.lang.Integer)

remove

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

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

getAllTaxonName

public java.util.Collection getAllTaxonName()
Specified by:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName()

getAllTaxonName

public java.util.Collection getAllTaxonName(int transform)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonName() 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:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(int)

getAllTaxonName

public java.util.Collection getAllTaxonName(java.lang.String queryString)
Description copied from interface: TaxonNameDao

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

Specified by:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(java.lang.String)

getAllTaxonName

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

Does the same thing as TaxonNameDao.getAllTaxonName() 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:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(int, int)

getAllTaxonName

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

Does the same thing as TaxonNameDao.getAllTaxonName(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:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(String, int, int)

getAllTaxonName

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

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

Specified by:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(int, String)

getAllTaxonName

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

Does the same thing as TaxonNameDao.getAllTaxonName(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:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(int, int, int)

getAllTaxonName

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

Does the same thing as TaxonNameDao.getAllTaxonName(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:
getAllTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonName(int, java.lang.String, int, int)

findTaxonNameById

public TaxonName findTaxonNameById(java.lang.Integer id)
Specified by:
findTaxonNameById in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameById(java.lang.Integer)

findTaxonNameById

public java.lang.Object findTaxonNameById(int transform,
                                          java.lang.Integer id)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameById(java.lang.Integer) 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:
findTaxonNameById in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameById(int, java.lang.Integer)

findTaxonNameById

public TaxonName findTaxonNameById(java.lang.String queryString,
                                   java.lang.Integer id)
Description copied from interface: TaxonNameDao

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

Specified by:
findTaxonNameById in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameById(java.lang.String, java.lang.Integer)

findTaxonNameById

public java.lang.Object findTaxonNameById(int transform,
                                          java.lang.String queryString,
                                          java.lang.Integer id)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameById(int, java.lang.Integer) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameById(int, java.lang.Integer id).

Specified by:
findTaxonNameById in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameById(int, java.lang.String, java.lang.Integer)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(ReferenceTaxon referenceTaxon)
Specified by:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon).

Specified by:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(java.lang.String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(int pageNumber,
                                                          int pageSize,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(int, int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString,
                                                          int pageNumber,
                                                          int pageSize,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(String, int, int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                          java.lang.String queryString,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon referenceTaxon).

Specified by:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(int, String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                          int pageNumber,
                                                          int pageSize,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(int, int, int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByReferenceTaxon

public java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                          java.lang.String queryString,
                                                          int pageNumber,
                                                          int pageSize,
                                                          ReferenceTaxon referenceTaxon)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByReferenceTaxon(int, String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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:
findTaxonNameByReferenceTaxon in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByReferenceTaxon(int, java.lang.String, int, int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(TaxonomicLevel taxonomicLevel)
Specified by:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel).

Specified by:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(java.lang.String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(int pageNumber,
                                                          int pageSize,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(int, int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString,
                                                          int pageNumber,
                                                          int pageSize,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(String, int, int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                          java.lang.String queryString,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel taxonomicLevel).

Specified by:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(int, String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                          int pageNumber,
                                                          int pageSize,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(int, int, int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByTaxonomicLevel

public java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                          java.lang.String queryString,
                                                          int pageNumber,
                                                          int pageSize,
                                                          TaxonomicLevel taxonomicLevel)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByTaxonomicLevel(int, String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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:
findTaxonNameByTaxonomicLevel in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByTaxonomicLevel(int, java.lang.String, int, int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(Citation citation)
Specified by:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(int transform,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) 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:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(java.lang.String queryString,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation).

Specified by:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(java.lang.String, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(int pageNumber,
                                                    int pageSize,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) 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:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(int, int, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(java.lang.String queryString,
                                                    int pageNumber,
                                                    int pageSize,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(String, fr.ifremer.allegro.referential.taxon.Citation) 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:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(String, int, int, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(int transform,
                                                    java.lang.String queryString,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation citation).

Specified by:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(int, String, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(int transform,
                                                    int pageNumber,
                                                    int pageSize,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) 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:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(int, int, int, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByCitation

public java.util.Collection findTaxonNameByCitation(int transform,
                                                    java.lang.String queryString,
                                                    int pageNumber,
                                                    int pageSize,
                                                    Citation citation)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByCitation(int, String, fr.ifremer.allegro.referential.taxon.Citation) 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:
findTaxonNameByCitation in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByCitation(int, java.lang.String, int, int, fr.ifremer.allegro.referential.taxon.Citation)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(TaxonName parentTaxonName)
Specified by:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) 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:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName).

Specified by:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(java.lang.String, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(int pageNumber,
                                                           int pageSize,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) 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:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(int, int, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString,
                                                           int pageNumber,
                                                           int pageSize,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(String, fr.ifremer.allegro.referential.taxon.TaxonName) 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:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(String, int, int, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                           java.lang.String queryString,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName parentTaxonName).

Specified by:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(int, String, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                           int pageNumber,
                                                           int pageSize,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) 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:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(int, int, int, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByParentTaxonName

public java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                           java.lang.String queryString,
                                                           int pageNumber,
                                                           int pageSize,
                                                           TaxonName parentTaxonName)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByParentTaxonName(int, String, fr.ifremer.allegro.referential.taxon.TaxonName) 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:
findTaxonNameByParentTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByParentTaxonName(int, java.lang.String, int, int, fr.ifremer.allegro.referential.taxon.TaxonName)

findTaxonNameByNaturalId

public TaxonName findTaxonNameByNaturalId(java.lang.Integer id)
Specified by:
findTaxonNameByNaturalId in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByNaturalId(java.lang.Integer)

findTaxonNameByNaturalId

public java.lang.Object findTaxonNameByNaturalId(int transform,
                                                 java.lang.Integer id)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByNaturalId(java.lang.Integer) 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:
findTaxonNameByNaturalId in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByNaturalId(int, java.lang.Integer)

findTaxonNameByNaturalId

public TaxonName findTaxonNameByNaturalId(java.lang.String queryString,
                                          java.lang.Integer id)
Description copied from interface: TaxonNameDao

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

Specified by:
findTaxonNameByNaturalId in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByNaturalId(java.lang.String, java.lang.Integer)

findTaxonNameByNaturalId

public java.lang.Object findTaxonNameByNaturalId(int transform,
                                                 java.lang.String queryString,
                                                 java.lang.Integer id)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.findTaxonNameByNaturalId(int, java.lang.Integer) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.findTaxonNameByNaturalId(int, java.lang.Integer id).

Specified by:
findTaxonNameByNaturalId in interface TaxonNameDao
See Also:
TaxonNameDao.findTaxonNameByNaturalId(int, java.lang.String, java.lang.Integer)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(java.sql.Timestamp updateDate)
Specified by:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) 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:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp).

Specified by:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.lang.String, java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) 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:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, int, java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(String, java.sql.Timestamp) 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:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(String, int, int, java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                            java.lang.String queryString,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) with an additional argument called queryString. This queryString argument allows you to override the query string defined in TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp updateDate).

Specified by:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, String, java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                            int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) 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:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, int, int, java.sql.Timestamp)

getAllTaxonNameSinceDateSynchro

public java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                            java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)
Description copied from interface: TaxonNameDao

Does the same thing as TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, String, java.sql.Timestamp) 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:
getAllTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllTaxonNameSinceDateSynchro(int, java.lang.String, int, int, java.sql.Timestamp)

createFromClusterTaxonName

public TaxonName createFromClusterTaxonName(ClusterTaxonName clusterTaxonName)
Specified by:
createFromClusterTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.createFromClusterTaxonName(fr.ifremer.allegro.referential.taxon.generic.cluster.ClusterTaxonName)

handleCreateFromClusterTaxonName

protected abstract TaxonName handleCreateFromClusterTaxonName(ClusterTaxonName clusterTaxonName)
                                                       throws java.lang.Exception
Performs the core logic for createFromClusterTaxonName(fr.ifremer.allegro.referential.taxon.generic.cluster.ClusterTaxonName)

Throws:
java.lang.Exception

getAllClusterTaxonNameSinceDateSynchro

public ClusterTaxonName[] getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp,
                                                                 java.lang.Integer userId,
                                                                 java.lang.Integer[] registrationLocationIds,
                                                                 java.lang.Integer pageNumber,
                                                                 java.lang.Integer pageSize)
Specified by:
getAllClusterTaxonNameSinceDateSynchro in interface TaxonNameDao
See Also:
TaxonNameDao.getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)

handleGetAllClusterTaxonNameSinceDateSynchro

protected abstract ClusterTaxonName[] handleGetAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp,
                                                                                   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 getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)

Throws:
java.lang.Exception

transformEntity

protected java.lang.Object transformEntity(int transform,
                                           TaxonName 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.referential.taxon.TaxonNameDao, please note that the TaxonNameDao.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 TaxonNameDao.TRANSFORM_NONE is assumed.

Parameters:
transform - one of the constants declared in TaxonNameDao
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.referential.taxon.TaxonName) 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.referential.taxon.TaxonNameDao
entities - the collection of entities to transform
See Also:
transformEntity(int,fr.ifremer.allegro.referential.taxon.TaxonName)

toEntity

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

toRemoteTaxonNameFullVOCollection

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

Specified by:
toRemoteTaxonNameFullVOCollection in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameFullVOCollection(java.util.Collection)

toRemoteTaxonNameFullVOArray

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

Specified by:
toRemoteTaxonNameFullVOArray in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameFullVOArray(java.util.Collection)

toRemoteTaxonNameFullVO

protected RemoteTaxonNameFullVO toRemoteTaxonNameFullVO(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 TaxonNameDaoImpl class if you intend to use reporting queries.

See Also:
TaxonNameDao.toRemoteTaxonNameFullVO(fr.ifremer.allegro.referential.taxon.TaxonName)

remoteTaxonNameFullVOToEntityCollection

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

Specified by:
remoteTaxonNameFullVOToEntityCollection in interface TaxonNameDao
See Also:
TaxonNameDao.remoteTaxonNameFullVOToEntityCollection(java.util.Collection)

toRemoteTaxonNameFullVO

public void toRemoteTaxonNameFullVO(TaxonName source,
                                    RemoteTaxonNameFullVO target)
Description copied from interface: TaxonNameDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteTaxonNameFullVO(), 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:
toRemoteTaxonNameFullVO in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameFullVO(fr.ifremer.allegro.referential.taxon.TaxonName, fr.ifremer.allegro.referential.taxon.generic.vo.RemoteTaxonNameFullVO)

toRemoteTaxonNameFullVO

public RemoteTaxonNameFullVO toRemoteTaxonNameFullVO(TaxonName entity)
Description copied from interface: TaxonNameDao
Converts this DAO's entity to an object of type RemoteTaxonNameFullVO.

Specified by:
toRemoteTaxonNameFullVO in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameFullVO(fr.ifremer.allegro.referential.taxon.TaxonName)

remoteTaxonNameFullVOToEntity

public void remoteTaxonNameFullVOToEntity(RemoteTaxonNameFullVO source,
                                          TaxonName target,
                                          boolean copyIfNull)
Description copied from interface: TaxonNameDao
Copies the fields of RemoteTaxonNameFullVO to the specified entity.

Specified by:
remoteTaxonNameFullVOToEntity in interface TaxonNameDao
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.referential.taxon.TaxonNameDao#remoteTaxonNameFullVOToEntity(fr.ifremer.allegro.referential.taxon.generic.vo.RemoteTaxonNameFullVO, fr.ifremer.allegro.referential.taxon.TaxonName)

toRemoteTaxonNameNaturalIdCollection

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

Specified by:
toRemoteTaxonNameNaturalIdCollection in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameNaturalIdCollection(java.util.Collection)

toRemoteTaxonNameNaturalIdArray

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

Specified by:
toRemoteTaxonNameNaturalIdArray in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameNaturalIdArray(java.util.Collection)

toRemoteTaxonNameNaturalId

protected RemoteTaxonNameNaturalId toRemoteTaxonNameNaturalId(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 TaxonNameDaoImpl class if you intend to use reporting queries.

See Also:
TaxonNameDao.toRemoteTaxonNameNaturalId(fr.ifremer.allegro.referential.taxon.TaxonName)

remoteTaxonNameNaturalIdToEntityCollection

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

Specified by:
remoteTaxonNameNaturalIdToEntityCollection in interface TaxonNameDao
See Also:
TaxonNameDao.remoteTaxonNameNaturalIdToEntityCollection(java.util.Collection)

toRemoteTaxonNameNaturalId

public void toRemoteTaxonNameNaturalId(TaxonName source,
                                       RemoteTaxonNameNaturalId target)
Description copied from interface: TaxonNameDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteTaxonNameNaturalId(), 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:
toRemoteTaxonNameNaturalId in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameNaturalId(fr.ifremer.allegro.referential.taxon.TaxonName, fr.ifremer.allegro.referential.taxon.generic.vo.RemoteTaxonNameNaturalId)

toRemoteTaxonNameNaturalId

public RemoteTaxonNameNaturalId toRemoteTaxonNameNaturalId(TaxonName entity)
Description copied from interface: TaxonNameDao
Converts this DAO's entity to an object of type RemoteTaxonNameNaturalId.

Specified by:
toRemoteTaxonNameNaturalId in interface TaxonNameDao
See Also:
TaxonNameDao.toRemoteTaxonNameNaturalId(fr.ifremer.allegro.referential.taxon.TaxonName)

remoteTaxonNameNaturalIdToEntity

public void remoteTaxonNameNaturalIdToEntity(RemoteTaxonNameNaturalId source,
                                             TaxonName target,
                                             boolean copyIfNull)
Description copied from interface: TaxonNameDao
Copies the fields of RemoteTaxonNameNaturalId to the specified entity.

Specified by:
remoteTaxonNameNaturalIdToEntity in interface TaxonNameDao
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.referential.taxon.TaxonNameDao#remoteTaxonNameNaturalIdToEntity(fr.ifremer.allegro.referential.taxon.generic.vo.RemoteTaxonNameNaturalId, fr.ifremer.allegro.referential.taxon.TaxonName)

toClusterTaxonNameCollection

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

Specified by:
toClusterTaxonNameCollection in interface TaxonNameDao
See Also:
TaxonNameDao.toClusterTaxonNameCollection(java.util.Collection)

toClusterTaxonNameArray

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

Specified by:
toClusterTaxonNameArray in interface TaxonNameDao
See Also:
TaxonNameDao.toClusterTaxonNameArray(java.util.Collection)

toClusterTaxonName

protected ClusterTaxonName toClusterTaxonName(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 TaxonNameDaoImpl class if you intend to use reporting queries.

See Also:
TaxonNameDao.toClusterTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName)

clusterTaxonNameToEntityCollection

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

Specified by:
clusterTaxonNameToEntityCollection in interface TaxonNameDao
See Also:
TaxonNameDao.clusterTaxonNameToEntityCollection(java.util.Collection)

toClusterTaxonName

public void toClusterTaxonName(TaxonName source,
                               ClusterTaxonName target)
Description copied from interface: TaxonNameDao
Copies the fields of the specified entity to the target value object. This method is similar to toClusterTaxonName(), 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:
toClusterTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.toClusterTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName, fr.ifremer.allegro.referential.taxon.generic.cluster.ClusterTaxonName)

toClusterTaxonName

public ClusterTaxonName toClusterTaxonName(TaxonName entity)
Description copied from interface: TaxonNameDao
Converts this DAO's entity to an object of type ClusterTaxonName.

Specified by:
toClusterTaxonName in interface TaxonNameDao
See Also:
TaxonNameDao.toClusterTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName)

clusterTaxonNameToEntity

public void clusterTaxonNameToEntity(ClusterTaxonName source,
                                     TaxonName target,
                                     boolean copyIfNull)
Description copied from interface: TaxonNameDao
Copies the fields of ClusterTaxonName to the specified entity.

Specified by:
clusterTaxonNameToEntity in interface TaxonNameDao
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.referential.taxon.TaxonNameDao#clusterTaxonNameToEntity(fr.ifremer.allegro.referential.taxon.generic.cluster.ClusterTaxonName, fr.ifremer.allegro.referential.taxon.TaxonName)

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: TaxonNameDao
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 TaxonNameDao
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:
TaxonNameDao.search(int, int, int, fr.ifremer.allegro.Search)

search

public PaginationResult search(int pageNumber,
                               int pageSize,
                               Search search)
Description copied from interface: TaxonNameDao
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 TaxonNameDao
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:
TaxonNameDao.search(int, int, fr.ifremer.allegro.Search)

search

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

search

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

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


Copyright © 2008-2010 IFREMER. All Rights Reserved.