fr.ifremer.allegro.referential.transcribing
Interface TranscribingGearDao

All Known Implementing Classes:
TranscribingGearDaoBase, TranscribingGearDaoImpl

public interface TranscribingGearDao

See Also:
TranscribingGear

Field Summary
static int TRANSFORM_CLUSTERTRANSCRIBINGGEAR
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
static int TRANSFORM_NONE
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
static int TRANSFORM_REMOTETRANSCRIBINGGEARFULLVO
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
static int TRANSFORM_REMOTETRANSCRIBINGGEARNATURALID
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
 
Method Summary
 TranscribingGear clusterTranscribingGearToEntity(ClusterTranscribingGear clusterTranscribingGear)
          Converts an instance of type ClusterTranscribingGear to this DAO's entity.
 void clusterTranscribingGearToEntity(ClusterTranscribingGear source, TranscribingGear target, boolean copyIfNull)
          Copies the fields of ClusterTranscribingGear to the specified entity.
 void clusterTranscribingGearToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterTranscribingGear to this DAO's entity.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear and adds from the passed in entities collection
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as create(fr.ifremer.allegro.referential.transcribing.TranscribingGear) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String externalCode, Gear gear, TranscribingSide transcribingSide, TranscribingSystem transcribingSystem)
           Does the same thing as create(java.lang.String,fr.ifremer.allegro.referential.gear.Gear,fr.ifremer.allegro.referential.transcribing.TranscribingSide,fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String externalCode, java.sql.Timestamp updateDate, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as create(java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.referential.transcribing.TranscribingSystem,fr.ifremer.allegro.referential.transcribing.TranscribingSide,fr.ifremer.allegro.referential.gear.Gear) with an additional flag called transform.
 java.lang.Object create(int transform, TranscribingGear transcribingGear)
           Does the same thing as create(fr.ifremer.allegro.referential.transcribing.TranscribingGear) with an additional flag called transform.
 TranscribingGear create(java.lang.String externalCode, Gear gear, TranscribingSide transcribingSide, TranscribingSystem transcribingSystem)
           Creates a new fr.ifremer.allegro.referential.transcribing.TranscribingGear instance from only required properties (attributes and association ends) and adds it to the persistent store.
 TranscribingGear create(java.lang.String externalCode, java.sql.Timestamp updateDate, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Creates a new fr.ifremer.allegro.referential.transcribing.TranscribingGear instance from all attributes and properties and adds it to the persistent store.
 TranscribingGear create(TranscribingGear transcribingGear)
          Creates an instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear and adds it to the persistent store.
 TranscribingGear createFromClusterTranscribingGear(ClusterTranscribingGear clusterTranscribingGear)
           
 java.util.Collection findTranscribingGearByGear(Gear gear)
           
 java.util.Collection findTranscribingGearByGear(int transform, Gear gear)
           Does the same thing as findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear) with an additional flag called transform.
 java.util.Collection findTranscribingGearByGear(int pageNumber, int pageSize, Gear gear)
           Does the same thing as findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByGear(int transform, int pageNumber, int pageSize, Gear gear)
           Does the same thing as findTranscribingGearByGear(int, fr.ifremer.allegro.referential.gear.Gear) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByGear(int transform, java.lang.String queryString, Gear gear)
           Does the same thing as findTranscribingGearByGear(int, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString.
 java.util.Collection findTranscribingGearByGear(int transform, java.lang.String queryString, int pageNumber, int pageSize, Gear gear)
           Does the same thing as findTranscribingGearByGear(int, String, fr.ifremer.allegro.referential.gear.Gear) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByGear(java.lang.String queryString, Gear gear)
           Does the same thing as findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString.
 java.util.Collection findTranscribingGearByGear(java.lang.String queryString, int pageNumber, int pageSize, Gear gear)
           Does the same thing as findTranscribingGearByGear(String, fr.ifremer.allegro.referential.gear.Gear) with an additional two arguments called pageNumber and pageSize.
 java.lang.Object findTranscribingGearByIdentifiers(int transform, java.lang.String queryString, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as findTranscribingGearByIdentifiers(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString.
 java.lang.Object findTranscribingGearByIdentifiers(int transform, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as findTranscribingGearByIdentifiers(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional flag called transform.
 TranscribingGear findTranscribingGearByIdentifiers(java.lang.String queryString, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as findTranscribingGearByIdentifiers(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString.
 TranscribingGear findTranscribingGearByIdentifiers(TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           
 java.lang.Object findTranscribingGearByNaturalId(int transform, java.lang.String queryString, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as findTranscribingGearByNaturalId(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString.
 java.lang.Object findTranscribingGearByNaturalId(int transform, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as findTranscribingGearByNaturalId(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional flag called transform.
 TranscribingGear findTranscribingGearByNaturalId(java.lang.String queryString, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as findTranscribingGearByNaturalId(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString.
 TranscribingGear findTranscribingGearByNaturalId(TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           
 java.util.Collection findTranscribingGearByTranscribingSide(int transform, int pageNumber, int pageSize, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(int, fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSide(int pageNumber, int pageSize, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSide(int transform, java.lang.String queryString, int pageNumber, int pageSize, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(int, String, fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSide(int transform, java.lang.String queryString, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(int, fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional argument called queryString.
 java.util.Collection findTranscribingGearByTranscribingSide(int transform, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional flag called transform.
 java.util.Collection findTranscribingGearByTranscribingSide(java.lang.String queryString, int pageNumber, int pageSize, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(String, fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSide(java.lang.String queryString, TranscribingSide transcribingSide)
           Does the same thing as findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional argument called queryString.
 java.util.Collection findTranscribingGearByTranscribingSide(TranscribingSide transcribingSide)
           
 java.util.Collection findTranscribingGearByTranscribingSystem(int transform, int pageNumber, int pageSize, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSystem(int pageNumber, int pageSize, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSystem(int transform, java.lang.String queryString, int pageNumber, int pageSize, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(int, String, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSystem(int transform, java.lang.String queryString, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional argument called queryString.
 java.util.Collection findTranscribingGearByTranscribingSystem(int transform, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional flag called transform.
 java.util.Collection findTranscribingGearByTranscribingSystem(java.lang.String queryString, int pageNumber, int pageSize, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(String, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTranscribingGearByTranscribingSystem(java.lang.String queryString, TranscribingSystem transcribingSystem)
           Does the same thing as findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional argument called queryString.
 java.util.Collection findTranscribingGearByTranscribingSystem(TranscribingSystem transcribingSystem)
           
 ClusterTranscribingGear[] getAllClusterTranscribingGearSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
           
 java.util.Collection getAllTranscribingGear()
           
 java.util.Collection getAllTranscribingGear(int transform)
           Does the same thing as getAllTranscribingGear() with an additional flag called transform.
 java.util.Collection getAllTranscribingGear(int pageNumber, int pageSize)
           Does the same thing as getAllTranscribingGear() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGear(int transform, int pageNumber, int pageSize)
           Does the same thing as getAllTranscribingGear(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGear(int transform, java.lang.String queryString)
           Does the same thing as getAllTranscribingGear(int) with an additional argument called queryString.
 java.util.Collection getAllTranscribingGear(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as getAllTranscribingGear(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGear(java.lang.String queryString)
           Does the same thing as getAllTranscribingGear() with an additional argument called queryString.
 java.util.Collection getAllTranscribingGear(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as getAllTranscribingGear(String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(int, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform, java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(int, String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform, java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(int, java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(java.sql.Timestamp) with an additional flag called transform.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as getAllTranscribingGearSinceDateSynchro(java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllTranscribingGearSinceDateSynchro(java.sql.Timestamp updateDate)
           
 java.lang.Object load(int transform, TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
           Does the same thing as load(fr.ifremer.allegro.referential.transcribing.TranscribingSystem,fr.ifremer.allegro.referential.transcribing.TranscribingSide,fr.ifremer.allegro.referential.gear.Gear) with an additional flag called transform.
 TranscribingGear load(TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
          Loads an instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear from the persistent store.
 java.util.Collection loadAll()
          Loads all entities of type TranscribingGear.
 java.util.Collection loadAll(int transform)
           Does the same thing as loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as loadAll() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection loadAll(int transform, int pageNumber, int pageSize)
           Does the same thing as loadAll(int) with an additional two arguments called pageNumber and pageSize.
 TranscribingGear remoteTranscribingGearFullVOToEntity(RemoteTranscribingGearFullVO remoteTranscribingGearFullVO)
          Converts an instance of type RemoteTranscribingGearFullVO to this DAO's entity.
 void remoteTranscribingGearFullVOToEntity(RemoteTranscribingGearFullVO source, TranscribingGear target, boolean copyIfNull)
          Copies the fields of RemoteTranscribingGearFullVO to the specified entity.
 void remoteTranscribingGearFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteTranscribingGearFullVO to this DAO's entity.
 TranscribingGear remoteTranscribingGearNaturalIdToEntity(RemoteTranscribingGearNaturalId remoteTranscribingGearNaturalId)
          Converts an instance of type RemoteTranscribingGearNaturalId to this DAO's entity.
 void remoteTranscribingGearNaturalIdToEntity(RemoteTranscribingGearNaturalId source, TranscribingGear target, boolean copyIfNull)
          Copies the fields of RemoteTranscribingGearNaturalId to the specified entity.
 void remoteTranscribingGearNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteTranscribingGearNaturalId to this DAO's entity.
 void remove(java.util.Collection entities)
          Removes all entities in the given entities collection.
 void remove(TranscribingGear transcribingGear)
          Removes the instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear from the persistent store.
 void remove(TranscribingSystem transcribingSystem, TranscribingSide transcribingSide, Gear gear)
          Removes the instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear having the given identifiers 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 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.
 ClusterTranscribingGear toClusterTranscribingGear(TranscribingGear entity)
          Converts this DAO's entity to an object of type ClusterTranscribingGear.
 void toClusterTranscribingGear(TranscribingGear source, ClusterTranscribingGear target)
          Copies the fields of the specified entity to the target value object.
 ClusterTranscribingGear[] toClusterTranscribingGearArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterTranscribingGear.
 void toClusterTranscribingGearCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterTranscribingGear.
 RemoteTranscribingGearFullVO toRemoteTranscribingGearFullVO(TranscribingGear entity)
          Converts this DAO's entity to an object of type RemoteTranscribingGearFullVO.
 void toRemoteTranscribingGearFullVO(TranscribingGear source, RemoteTranscribingGearFullVO target)
          Copies the fields of the specified entity to the target value object.
 RemoteTranscribingGearFullVO[] toRemoteTranscribingGearFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteTranscribingGearFullVO.
 void toRemoteTranscribingGearFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteTranscribingGearFullVO.
 RemoteTranscribingGearNaturalId toRemoteTranscribingGearNaturalId(TranscribingGear entity)
          Converts this DAO's entity to an object of type RemoteTranscribingGearNaturalId.
 void toRemoteTranscribingGearNaturalId(TranscribingGear source, RemoteTranscribingGearNaturalId target)
          Copies the fields of the specified entity to the target value object.
 RemoteTranscribingGearNaturalId[] toRemoteTranscribingGearNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteTranscribingGearNaturalId.
 void toRemoteTranscribingGearNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteTranscribingGearNaturalId.
 void update(java.util.Collection entities)
          Updates all instances in the entities collection in the persistent store.
 void update(TranscribingGear transcribingGear)
          Updates the transcribingGear instance in the persistent store.
 

Field Detail

TRANSFORM_NONE

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

This specific flag denotes no transformation will occur.

See Also:
Constant Field Values

TRANSFORM_REMOTETRANSCRIBINGGEARFULLVO

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

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

See Also:
Constant Field Values

TRANSFORM_REMOTETRANSCRIBINGGEARNATURALID

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

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

See Also:
Constant Field Values

TRANSFORM_CLUSTERTRANSCRIBINGGEAR

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

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

See Also:
Constant Field Values
Method Detail

toRemoteTranscribingGearFullVO

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


toRemoteTranscribingGearFullVO

RemoteTranscribingGearFullVO toRemoteTranscribingGearFullVO(TranscribingGear entity)
Converts this DAO's entity to an object of type RemoteTranscribingGearFullVO.


toRemoteTranscribingGearFullVOCollection

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


toRemoteTranscribingGearFullVOArray

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


remoteTranscribingGearFullVOToEntity

void remoteTranscribingGearFullVOToEntity(RemoteTranscribingGearFullVO source,
                                          TranscribingGear target,
                                          boolean copyIfNull)
Copies the fields of RemoteTranscribingGearFullVO to the specified entity.

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

remoteTranscribingGearFullVOToEntity

TranscribingGear remoteTranscribingGearFullVOToEntity(RemoteTranscribingGearFullVO remoteTranscribingGearFullVO)
Converts an instance of type RemoteTranscribingGearFullVO to this DAO's entity.


remoteTranscribingGearFullVOToEntityCollection

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


toRemoteTranscribingGearNaturalId

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


toRemoteTranscribingGearNaturalId

RemoteTranscribingGearNaturalId toRemoteTranscribingGearNaturalId(TranscribingGear entity)
Converts this DAO's entity to an object of type RemoteTranscribingGearNaturalId.


toRemoteTranscribingGearNaturalIdCollection

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


toRemoteTranscribingGearNaturalIdArray

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


remoteTranscribingGearNaturalIdToEntity

void remoteTranscribingGearNaturalIdToEntity(RemoteTranscribingGearNaturalId source,
                                             TranscribingGear target,
                                             boolean copyIfNull)
Copies the fields of RemoteTranscribingGearNaturalId to the specified entity.

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

remoteTranscribingGearNaturalIdToEntity

TranscribingGear remoteTranscribingGearNaturalIdToEntity(RemoteTranscribingGearNaturalId remoteTranscribingGearNaturalId)
Converts an instance of type RemoteTranscribingGearNaturalId to this DAO's entity.


remoteTranscribingGearNaturalIdToEntityCollection

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


toClusterTranscribingGear

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


toClusterTranscribingGear

ClusterTranscribingGear toClusterTranscribingGear(TranscribingGear entity)
Converts this DAO's entity to an object of type ClusterTranscribingGear.


toClusterTranscribingGearCollection

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


toClusterTranscribingGearArray

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


clusterTranscribingGearToEntity

void clusterTranscribingGearToEntity(ClusterTranscribingGear source,
                                     TranscribingGear target,
                                     boolean copyIfNull)
Copies the fields of ClusterTranscribingGear to the specified entity.

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

clusterTranscribingGearToEntity

TranscribingGear clusterTranscribingGearToEntity(ClusterTranscribingGear clusterTranscribingGear)
Converts an instance of type ClusterTranscribingGear to this DAO's entity.


clusterTranscribingGearToEntityCollection

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


load

TranscribingGear load(TranscribingSystem transcribingSystem,
                      TranscribingSide transcribingSide,
                      Gear gear)
Loads an instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear from the persistent store.


load

java.lang.Object load(int transform,
                      TranscribingSystem transcribingSystem,
                      TranscribingSide transcribingSide,
                      Gear gear)

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

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

loadAll

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

Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int transform)

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

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

loadAll

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

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

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

loadAll

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

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

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

create

TranscribingGear create(TranscribingGear transcribingGear)
Creates an instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        TranscribingGear transcribingGear)

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


create

java.util.Collection create(java.util.Collection entities)
Creates a new instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear and adds from the passed in entities collection

Parameters:
entities - the collection of fr.ifremer.allegro.referential.transcribing.TranscribingGear instances to create.
Returns:
the created instances.

create

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

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


create

TranscribingGear create(java.lang.String externalCode,
                        java.sql.Timestamp updateDate,
                        TranscribingSystem transcribingSystem,
                        TranscribingSide transcribingSide,
                        Gear gear)

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


create

java.lang.Object create(int transform,
                        java.lang.String externalCode,
                        java.sql.Timestamp updateDate,
                        TranscribingSystem transcribingSystem,
                        TranscribingSide transcribingSide,
                        Gear gear)

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


create

TranscribingGear create(java.lang.String externalCode,
                        Gear gear,
                        TranscribingSide transcribingSide,
                        TranscribingSystem transcribingSystem)

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


create

java.lang.Object create(int transform,
                        java.lang.String externalCode,
                        Gear gear,
                        TranscribingSide transcribingSide,
                        TranscribingSystem transcribingSystem)

Does the same thing as create(java.lang.String,fr.ifremer.allegro.referential.gear.Gear,fr.ifremer.allegro.referential.transcribing.TranscribingSide,fr.ifremer.allegro.referential.transcribing.TranscribingSystem) 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.


update

void update(TranscribingGear transcribingGear)
Updates the transcribingGear instance in the persistent store.


update

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


remove

void remove(TranscribingGear transcribingGear)
Removes the instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear from the persistent store.


remove

void remove(TranscribingSystem transcribingSystem,
            TranscribingSide transcribingSide,
            Gear gear)
Removes the instance of fr.ifremer.allegro.referential.transcribing.TranscribingGear having the given identifiers from the persistent store.


remove

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


getAllTranscribingGear

java.util.Collection getAllTranscribingGear()

getAllTranscribingGear

java.util.Collection getAllTranscribingGear(java.lang.String queryString)

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


getAllTranscribingGear

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

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


getAllTranscribingGear

java.util.Collection getAllTranscribingGear(java.lang.String queryString,
                                            int pageNumber,
                                            int pageSize)

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


getAllTranscribingGear

java.util.Collection getAllTranscribingGear(int transform)

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


getAllTranscribingGear

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

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


getAllTranscribingGear

java.util.Collection getAllTranscribingGear(int transform,
                                            java.lang.String queryString)

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


getAllTranscribingGear

java.util.Collection getAllTranscribingGear(int transform,
                                            java.lang.String queryString,
                                            int pageNumber,
                                            int pageSize)

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


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(TranscribingSystem transcribingSystem)

findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(java.lang.String queryString,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem).


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(int pageNumber,
                                                              int pageSize,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem) 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.


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(java.lang.String queryString,
                                                              int pageNumber,
                                                              int pageSize,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(String, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) 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.


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(int transform,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(fr.ifremer.allegro.referential.transcribing.TranscribingSystem) 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.


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(int transform,
                                                              int pageNumber,
                                                              int pageSize,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) 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.


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(int transform,
                                                              java.lang.String queryString,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByTranscribingSystem(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem transcribingSystem).


findTranscribingGearByTranscribingSystem

java.util.Collection findTranscribingGearByTranscribingSystem(int transform,
                                                              java.lang.String queryString,
                                                              int pageNumber,
                                                              int pageSize,
                                                              TranscribingSystem transcribingSystem)

Does the same thing as findTranscribingGearByTranscribingSystem(int, String, fr.ifremer.allegro.referential.transcribing.TranscribingSystem) 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.


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(TranscribingSide transcribingSide)

findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(java.lang.String queryString,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide).


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(int pageNumber,
                                                            int pageSize,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide) 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.


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(String, fr.ifremer.allegro.referential.transcribing.TranscribingSide) 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.


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(int transform,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(fr.ifremer.allegro.referential.transcribing.TranscribingSide) 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.


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(int transform,
                                                            int pageNumber,
                                                            int pageSize,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(int, fr.ifremer.allegro.referential.transcribing.TranscribingSide) 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.


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(int transform,
                                                            java.lang.String queryString,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(int, fr.ifremer.allegro.referential.transcribing.TranscribingSide) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByTranscribingSide(int, fr.ifremer.allegro.referential.transcribing.TranscribingSide transcribingSide).


findTranscribingGearByTranscribingSide

java.util.Collection findTranscribingGearByTranscribingSide(int transform,
                                                            java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            TranscribingSide transcribingSide)

Does the same thing as findTranscribingGearByTranscribingSide(int, String, fr.ifremer.allegro.referential.transcribing.TranscribingSide) 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.


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(Gear gear)

findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(java.lang.String queryString,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear).


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(int pageNumber,
                                                int pageSize,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(java.lang.String queryString,
                                                int pageNumber,
                                                int pageSize,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(String, fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(int transform,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(int transform,
                                                int pageNumber,
                                                int pageSize,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(int, fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(int transform,
                                                java.lang.String queryString,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(int, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByGear(int, fr.ifremer.allegro.referential.gear.Gear gear).


findTranscribingGearByGear

java.util.Collection findTranscribingGearByGear(int transform,
                                                java.lang.String queryString,
                                                int pageNumber,
                                                int pageSize,
                                                Gear gear)

Does the same thing as findTranscribingGearByGear(int, String, fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByIdentifiers

TranscribingGear findTranscribingGearByIdentifiers(TranscribingSystem transcribingSystem,
                                                   TranscribingSide transcribingSide,
                                                   Gear gear)

findTranscribingGearByIdentifiers

TranscribingGear findTranscribingGearByIdentifiers(java.lang.String queryString,
                                                   TranscribingSystem transcribingSystem,
                                                   TranscribingSide transcribingSide,
                                                   Gear gear)

Does the same thing as findTranscribingGearByIdentifiers(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByIdentifiers(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear).


findTranscribingGearByIdentifiers

java.lang.Object findTranscribingGearByIdentifiers(int transform,
                                                   TranscribingSystem transcribingSystem,
                                                   TranscribingSide transcribingSide,
                                                   Gear gear)

Does the same thing as findTranscribingGearByIdentifiers(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByIdentifiers

java.lang.Object findTranscribingGearByIdentifiers(int transform,
                                                   java.lang.String queryString,
                                                   TranscribingSystem transcribingSystem,
                                                   TranscribingSide transcribingSide,
                                                   Gear gear)

Does the same thing as findTranscribingGearByIdentifiers(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByIdentifiers(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem transcribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide transcribingSide, fr.ifremer.allegro.referential.gear.Gear gear).


findTranscribingGearByNaturalId

TranscribingGear findTranscribingGearByNaturalId(TranscribingSystem transcribingSystem,
                                                 TranscribingSide transcribingSide,
                                                 Gear gear)

findTranscribingGearByNaturalId

TranscribingGear findTranscribingGearByNaturalId(java.lang.String queryString,
                                                 TranscribingSystem transcribingSystem,
                                                 TranscribingSide transcribingSide,
                                                 Gear gear)

Does the same thing as findTranscribingGearByNaturalId(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByNaturalId(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear).


findTranscribingGearByNaturalId

java.lang.Object findTranscribingGearByNaturalId(int transform,
                                                 TranscribingSystem transcribingSystem,
                                                 TranscribingSide transcribingSide,
                                                 Gear gear)

Does the same thing as findTranscribingGearByNaturalId(fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) 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.


findTranscribingGearByNaturalId

java.lang.Object findTranscribingGearByNaturalId(int transform,
                                                 java.lang.String queryString,
                                                 TranscribingSystem transcribingSystem,
                                                 TranscribingSide transcribingSide,
                                                 Gear gear)

Does the same thing as findTranscribingGearByNaturalId(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide, fr.ifremer.allegro.referential.gear.Gear) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findTranscribingGearByNaturalId(int, fr.ifremer.allegro.referential.transcribing.TranscribingSystem transcribingSystem, fr.ifremer.allegro.referential.transcribing.TranscribingSide transcribingSide, fr.ifremer.allegro.referential.gear.Gear gear).


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(java.sql.Timestamp updateDate)

getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(java.lang.String queryString,
                                                            java.sql.Timestamp updateDate)

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


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)

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


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)

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


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform,
                                                            java.sql.Timestamp updateDate)

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


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform,
                                                            int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)

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


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform,
                                                            java.lang.String queryString,
                                                            java.sql.Timestamp updateDate)

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


getAllTranscribingGearSinceDateSynchro

java.util.Collection getAllTranscribingGearSinceDateSynchro(int transform,
                                                            java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            java.sql.Timestamp updateDate)

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


createFromClusterTranscribingGear

TranscribingGear createFromClusterTranscribingGear(ClusterTranscribingGear clusterTranscribingGear)

getAllClusterTranscribingGearSinceDateSynchro

ClusterTranscribingGear[] getAllClusterTranscribingGearSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp,
                                                                        java.lang.Integer userId,
                                                                        java.lang.Integer[] registrationLocationIds,
                                                                        java.lang.Integer pageNumber,
                                                                        java.lang.Integer pageSize)

search

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. These flags allow you to limit your data to a specified page number and size.

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

search

PaginationResult search(int pageNumber,
                        int pageSize,
                        Search search)
Does the same thing as {@link #search(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.

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

search

java.util.Set search(int transform,
                     Search search)
Does the same thing as search(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.

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

search

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

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


Copyright © 2008-2010 IFREMER. All Rights Reserved.