fr.ifremer.allegro.playground
Class PlaygroundVesselOwnerDaoBase

java.lang.Object
  extended by org.springframework.orm.hibernate3.support.HibernateDaoSupport
      extended by fr.ifremer.allegro.playground.PlaygroundVesselOwnerDaoBase
All Implemented Interfaces:
PlaygroundVesselOwnerDao
Direct Known Subclasses:
PlaygroundVesselOwnerDaoImpl

public abstract class PlaygroundVesselOwnerDaoBase
extends org.springframework.orm.hibernate3.support.HibernateDaoSupport
implements PlaygroundVesselOwnerDao

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

See Also:
PlaygroundVesselOwner

Field Summary
 
Fields inherited from interface fr.ifremer.allegro.playground.PlaygroundVesselOwnerDao
TRANSFORM_CLUSTERPLAYGROUNDVESSELOWNER, TRANSFORM_NONE, TRANSFORM_REMOTEPLAYGROUNDVESSELOWNERFULLVO, TRANSFORM_REMOTEPLAYGROUNDVESSELOWNERNATURALID
 
Constructor Summary
PlaygroundVesselOwnerDaoBase()
           
 
Method Summary
 void clusterPlaygroundVesselOwnerToEntity(ClusterPlaygroundVesselOwner source, PlaygroundVesselOwner target, boolean copyIfNull)
          Copies the fields of ClusterPlaygroundVesselOwner to the specified entity.
 void clusterPlaygroundVesselOwnerToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterPlaygroundVesselOwner to this DAO's entity.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner and adds from the passed in entities collection
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as PlaygroundVesselOwnerDao.create(fr.ifremer.allegro.playground.PlaygroundVesselOwner) with an additional flag called transform.
 java.lang.Object create(int transform, PlaygroundVesselOwner playgroundVesselOwner)
           Does the same thing as PlaygroundVesselOwnerDao.create(fr.ifremer.allegro.playground.PlaygroundVesselOwner) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String code)
           Does the same thing as PlaygroundVesselOwnerDao.create(java.lang.String) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String code, java.lang.String lastname, java.lang.String firstname, java.lang.String street, java.lang.String zipCode, java.lang.String city, java.sql.Timestamp updateDate, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.create(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional flag called transform.
 PlaygroundVesselOwner create(PlaygroundVesselOwner playgroundVesselOwner)
          Creates an instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner and adds it to the persistent store.
 PlaygroundVesselOwner create(java.lang.String code)
           Creates a new fr.ifremer.allegro.playground.PlaygroundVesselOwner instance from only required properties (attributes and association ends) and adds it to the persistent store.
 PlaygroundVesselOwner create(java.lang.String code, java.lang.String lastname, java.lang.String firstname, java.lang.String street, java.lang.String zipCode, java.lang.String city, java.sql.Timestamp updateDate, FishingTrip fishingTrip)
           Creates a new fr.ifremer.allegro.playground.PlaygroundVesselOwner instance from all attributes and properties and adds it to the persistent store.
 PlaygroundVesselOwner createFromClusterPlaygroundVesselOwner(ClusterPlaygroundVesselOwner clusterPlaygroundVesselOwner)
           
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(FishingTrip fishingTrip)
           
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional flag called transform.
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int pageNumber, int pageSize, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform, int pageNumber, int pageSize, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform, java.lang.String queryString, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional argument called queryString.
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform, java.lang.String queryString, int pageNumber, int pageSize, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, String, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(java.lang.String queryString, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional argument called queryString.
 java.util.Collection findPlaygroundVesselOwnerByFishingTrip(java.lang.String queryString, int pageNumber, int pageSize, FishingTrip fishingTrip)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(String, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional two arguments called pageNumber and pageSize.
 PlaygroundVesselOwner findPlaygroundVesselOwnerById(java.lang.Integer id)
           
 java.lang.Object findPlaygroundVesselOwnerById(int transform, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerById(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findPlaygroundVesselOwnerById(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerById(int, java.lang.Integer) with an additional argument called queryString.
 PlaygroundVesselOwner findPlaygroundVesselOwnerById(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerById(java.lang.Integer) with an additional argument called queryString.
 PlaygroundVesselOwner findPlaygroundVesselOwnerByNaturalId(java.lang.Integer id)
           
 java.lang.Object findPlaygroundVesselOwnerByNaturalId(int transform, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByNaturalId(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findPlaygroundVesselOwnerByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByNaturalId(int, java.lang.Integer) with an additional argument called queryString.
 PlaygroundVesselOwner findPlaygroundVesselOwnerByNaturalId(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByNaturalId(java.lang.Integer) with an additional argument called queryString.
 ClusterPlaygroundVesselOwner[] getAllClusterPlaygroundVesselOwnerSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
           
 java.util.Collection getAllPlaygroundVesselOwner()
           
 java.util.Collection getAllPlaygroundVesselOwner(int transform)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner() with an additional flag called transform.
 java.util.Collection getAllPlaygroundVesselOwner(int pageNumber, int pageSize)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwner(int transform, int pageNumber, int pageSize)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwner(int transform, java.lang.String queryString)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner(int) with an additional argument called queryString.
 java.util.Collection getAllPlaygroundVesselOwner(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwner(java.lang.String queryString)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner() with an additional argument called queryString.
 java.util.Collection getAllPlaygroundVesselOwner(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner(String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(int transform, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(int, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(int transform, java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(int, String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(int transform, java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(int, java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(int transform, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(java.sql.Timestamp) with an additional flag called transform.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwnerSinceDateSynchro(java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllPlaygroundVesselOwnerSinceDateSynchro(java.sql.Timestamp updateDate)
           
protected  FishingTripDao getFishingTripDao()
          Gets the reference to fishingTripDao.
protected  java.security.Principal getPrincipal()
          Gets the current principal if one has been set, otherwise returns null.
protected abstract  PlaygroundVesselOwner handleCreateFromClusterPlaygroundVesselOwner(ClusterPlaygroundVesselOwner clusterPlaygroundVesselOwner)
          Performs the core logic for createFromClusterPlaygroundVesselOwner(fr.ifremer.allegro.playground.generic.cluster.ClusterPlaygroundVesselOwner)
protected abstract  ClusterPlaygroundVesselOwner[] handleGetAllClusterPlaygroundVesselOwnerSinceDateSynchro(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 getAllClusterPlaygroundVesselOwnerSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)
 PlaygroundVesselOwner load(java.lang.Integer id)
          Loads an instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner from the persistent store.
 java.lang.Object load(int transform, java.lang.Integer id)
           Does the same thing as PlaygroundVesselOwnerDao.load(java.lang.Integer) with an additional flag called transform.
 java.util.Collection loadAll()
          Loads all entities of type PlaygroundVesselOwner.
 java.util.Collection loadAll(int transform)
           Does the same thing as PlaygroundVesselOwnerDao.loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as PlaygroundVesselOwnerDao.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 PlaygroundVesselOwnerDao.loadAll(int) with an additional two arguments called pageNumber and pageSize.
 void remotePlaygroundVesselOwnerFullVOToEntity(RemotePlaygroundVesselOwnerFullVO source, PlaygroundVesselOwner target, boolean copyIfNull)
          Copies the fields of RemotePlaygroundVesselOwnerFullVO to the specified entity.
 void remotePlaygroundVesselOwnerFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemotePlaygroundVesselOwnerFullVO to this DAO's entity.
 void remotePlaygroundVesselOwnerNaturalIdToEntity(RemotePlaygroundVesselOwnerNaturalId source, PlaygroundVesselOwner target, boolean copyIfNull)
          Copies the fields of RemotePlaygroundVesselOwnerNaturalId to the specified entity.
 void remotePlaygroundVesselOwnerNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemotePlaygroundVesselOwnerNaturalId 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.playground.PlaygroundVesselOwner having the given identifier from the persistent store.
 void remove(PlaygroundVesselOwner playgroundVesselOwner)
          Removes the instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner 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 PlaygroundVesselOwnerDao.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 setFishingTripDao(FishingTripDao fishingTripDao)
          Sets the reference to fishingTripDao.
protected  ClusterPlaygroundVesselOwner toClusterPlaygroundVesselOwner(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 ClusterPlaygroundVesselOwner toClusterPlaygroundVesselOwner(PlaygroundVesselOwner entity)
          Converts this DAO's entity to an object of type ClusterPlaygroundVesselOwner.
 void toClusterPlaygroundVesselOwner(PlaygroundVesselOwner source, ClusterPlaygroundVesselOwner target)
          Copies the fields of the specified entity to the target value object.
 ClusterPlaygroundVesselOwner[] toClusterPlaygroundVesselOwnerArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterPlaygroundVesselOwner.
 void toClusterPlaygroundVesselOwnerCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterPlaygroundVesselOwner.
protected  PlaygroundVesselOwner toEntity(java.lang.Object[] row)
           
protected  RemotePlaygroundVesselOwnerFullVO toRemotePlaygroundVesselOwnerFullVO(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemotePlaygroundVesselOwnerFullVO toRemotePlaygroundVesselOwnerFullVO(PlaygroundVesselOwner entity)
          Converts this DAO's entity to an object of type RemotePlaygroundVesselOwnerFullVO.
 void toRemotePlaygroundVesselOwnerFullVO(PlaygroundVesselOwner source, RemotePlaygroundVesselOwnerFullVO target)
          Copies the fields of the specified entity to the target value object.
 RemotePlaygroundVesselOwnerFullVO[] toRemotePlaygroundVesselOwnerFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemotePlaygroundVesselOwnerFullVO.
 void toRemotePlaygroundVesselOwnerFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemotePlaygroundVesselOwnerFullVO.
protected  RemotePlaygroundVesselOwnerNaturalId toRemotePlaygroundVesselOwnerNaturalId(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemotePlaygroundVesselOwnerNaturalId toRemotePlaygroundVesselOwnerNaturalId(PlaygroundVesselOwner entity)
          Converts this DAO's entity to an object of type RemotePlaygroundVesselOwnerNaturalId.
 void toRemotePlaygroundVesselOwnerNaturalId(PlaygroundVesselOwner source, RemotePlaygroundVesselOwnerNaturalId target)
          Copies the fields of the specified entity to the target value object.
 RemotePlaygroundVesselOwnerNaturalId[] toRemotePlaygroundVesselOwnerNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemotePlaygroundVesselOwnerNaturalId.
 void toRemotePlaygroundVesselOwnerNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemotePlaygroundVesselOwnerNaturalId.
protected  void transformEntities(int transform, java.util.Collection entities)
          Transforms a collection of entities using the transformEntity(int,fr.ifremer.allegro.playground.PlaygroundVesselOwner) method.
protected  java.lang.Object transformEntity(int transform, PlaygroundVesselOwner 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.playground.PlaygroundVesselOwnerDao, please note that the PlaygroundVesselOwnerDao.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(PlaygroundVesselOwner playgroundVesselOwner)
          Updates the playgroundVesselOwner 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.playground.PlaygroundVesselOwnerDao
clusterPlaygroundVesselOwnerToEntity, remotePlaygroundVesselOwnerFullVOToEntity, remotePlaygroundVesselOwnerNaturalIdToEntity
 

Constructor Detail

PlaygroundVesselOwnerDaoBase

public PlaygroundVesselOwnerDaoBase()
Method Detail

setFishingTripDao

public void setFishingTripDao(FishingTripDao fishingTripDao)
Sets the reference to fishingTripDao.


getFishingTripDao

protected FishingTripDao getFishingTripDao()
Gets the reference to fishingTripDao.


load

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

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

load

public PlaygroundVesselOwner load(java.lang.Integer id)
Description copied from interface: PlaygroundVesselOwnerDao
Loads an instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner from the persistent store.

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

loadAll

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

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

loadAll

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

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

loadAll

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

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

loadAll

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

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

create

public PlaygroundVesselOwner create(PlaygroundVesselOwner playgroundVesselOwner)
Description copied from interface: PlaygroundVesselOwnerDao
Creates an instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner and adds it to the persistent store.

Specified by:
create in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.create(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

create

public java.lang.Object create(int transform,
                               PlaygroundVesselOwner playgroundVesselOwner)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.create(fr.ifremer.allegro.playground.PlaygroundVesselOwner) 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 PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.create(int transform, fr.ifremer.allegro.playground.PlaygroundVesselOwner)

create

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

Specified by:
create in interface PlaygroundVesselOwnerDao
Parameters:
entities - the collection of fr.ifremer.allegro.playground.PlaygroundVesselOwner instances to create.
Returns:
the created instances.
See Also:
PlaygroundVesselOwnerDao.create(java.util.Collection)

create

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

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

create

public PlaygroundVesselOwner create(java.lang.String code,
                                    java.lang.String lastname,
                                    java.lang.String firstname,
                                    java.lang.String street,
                                    java.lang.String zipCode,
                                    java.lang.String city,
                                    java.sql.Timestamp updateDate,
                                    FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Creates a new fr.ifremer.allegro.playground.PlaygroundVesselOwner instance from all attributes and properties and adds it to the persistent store.

Specified by:
create in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.create(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

create

public java.lang.Object create(int transform,
                               java.lang.String code,
                               java.lang.String lastname,
                               java.lang.String firstname,
                               java.lang.String street,
                               java.lang.String zipCode,
                               java.lang.String city,
                               java.sql.Timestamp updateDate,
                               FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.create(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) 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 PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.create(int, java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

create

public PlaygroundVesselOwner create(java.lang.String code)
Description copied from interface: PlaygroundVesselOwnerDao

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

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

create

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

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

update

public void update(PlaygroundVesselOwner playgroundVesselOwner)
Description copied from interface: PlaygroundVesselOwnerDao
Updates the playgroundVesselOwner instance in the persistent store.

Specified by:
update in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.update(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

update

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

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

remove

public void remove(PlaygroundVesselOwner playgroundVesselOwner)
Description copied from interface: PlaygroundVesselOwnerDao
Removes the instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner from the persistent store.

Specified by:
remove in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.remove(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

remove

public void remove(java.lang.Integer id)
Description copied from interface: PlaygroundVesselOwnerDao
Removes the instance of fr.ifremer.allegro.playground.PlaygroundVesselOwner having the given identifier from the persistent store.

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

remove

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

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

getAllPlaygroundVesselOwner

public java.util.Collection getAllPlaygroundVesselOwner()
Specified by:
getAllPlaygroundVesselOwner in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner()

getAllPlaygroundVesselOwner

public java.util.Collection getAllPlaygroundVesselOwner(int transform)
Description copied from interface: PlaygroundVesselOwnerDao

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

getAllPlaygroundVesselOwner

public java.util.Collection getAllPlaygroundVesselOwner(java.lang.String queryString)
Description copied from interface: PlaygroundVesselOwnerDao

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

Specified by:
getAllPlaygroundVesselOwner in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner(java.lang.String)

getAllPlaygroundVesselOwner

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

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

getAllPlaygroundVesselOwner

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

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

getAllPlaygroundVesselOwner

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

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

Specified by:
getAllPlaygroundVesselOwner in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.getAllPlaygroundVesselOwner(int, String)

getAllPlaygroundVesselOwner

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

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

getAllPlaygroundVesselOwner

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

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

findPlaygroundVesselOwnerById

public PlaygroundVesselOwner findPlaygroundVesselOwnerById(java.lang.Integer id)
Specified by:
findPlaygroundVesselOwnerById in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerById(java.lang.Integer)

findPlaygroundVesselOwnerById

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

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

findPlaygroundVesselOwnerById

public PlaygroundVesselOwner findPlaygroundVesselOwnerById(java.lang.String queryString,
                                                           java.lang.Integer id)
Description copied from interface: PlaygroundVesselOwnerDao

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

Specified by:
findPlaygroundVesselOwnerById in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerById(java.lang.String, java.lang.Integer)

findPlaygroundVesselOwnerById

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

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

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

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(FishingTrip fishingTrip)
Specified by:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) 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:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(java.lang.String queryString,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional argument called queryString. This queryString argument allows you to override the query string defined in PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip).

Specified by:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(java.lang.String, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int pageNumber,
                                                                   int pageSize,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) 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:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(java.lang.String queryString,
                                                                   int pageNumber,
                                                                   int pageSize,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(String, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) 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:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(String, int, int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform,
                                                                   java.lang.String queryString,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) with an additional argument called queryString. This queryString argument allows you to override the query string defined in PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip fishingTrip).

Specified by:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, String, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform,
                                                                   int pageNumber,
                                                                   int pageSize,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) 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:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, int, int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByFishingTrip

public java.util.Collection findPlaygroundVesselOwnerByFishingTrip(int transform,
                                                                   java.lang.String queryString,
                                                                   int pageNumber,
                                                                   int pageSize,
                                                                   FishingTrip fishingTrip)
Description copied from interface: PlaygroundVesselOwnerDao

Does the same thing as PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, String, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip) 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:
findPlaygroundVesselOwnerByFishingTrip in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByFishingTrip(int, java.lang.String, int, int, fr.ifremer.allegro.data.survey.fishingTrip.FishingTrip)

findPlaygroundVesselOwnerByNaturalId

public PlaygroundVesselOwner findPlaygroundVesselOwnerByNaturalId(java.lang.Integer id)
Specified by:
findPlaygroundVesselOwnerByNaturalId in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByNaturalId(java.lang.Integer)

findPlaygroundVesselOwnerByNaturalId

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

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

findPlaygroundVesselOwnerByNaturalId

public PlaygroundVesselOwner findPlaygroundVesselOwnerByNaturalId(java.lang.String queryString,
                                                                  java.lang.Integer id)
Description copied from interface: PlaygroundVesselOwnerDao

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

Specified by:
findPlaygroundVesselOwnerByNaturalId in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.findPlaygroundVesselOwnerByNaturalId(java.lang.String, java.lang.Integer)

findPlaygroundVesselOwnerByNaturalId

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

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

getAllPlaygroundVesselOwnerSinceDateSynchro

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

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

createFromClusterPlaygroundVesselOwner

public PlaygroundVesselOwner createFromClusterPlaygroundVesselOwner(ClusterPlaygroundVesselOwner clusterPlaygroundVesselOwner)
Specified by:
createFromClusterPlaygroundVesselOwner in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.createFromClusterPlaygroundVesselOwner(fr.ifremer.allegro.playground.generic.cluster.ClusterPlaygroundVesselOwner)

handleCreateFromClusterPlaygroundVesselOwner

protected abstract PlaygroundVesselOwner handleCreateFromClusterPlaygroundVesselOwner(ClusterPlaygroundVesselOwner clusterPlaygroundVesselOwner)
                                                                               throws java.lang.Exception
Performs the core logic for createFromClusterPlaygroundVesselOwner(fr.ifremer.allegro.playground.generic.cluster.ClusterPlaygroundVesselOwner)

Throws:
java.lang.Exception

getAllClusterPlaygroundVesselOwnerSinceDateSynchro

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

handleGetAllClusterPlaygroundVesselOwnerSinceDateSynchro

protected abstract ClusterPlaygroundVesselOwner[] handleGetAllClusterPlaygroundVesselOwnerSinceDateSynchro(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 getAllClusterPlaygroundVesselOwnerSinceDateSynchro(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,
                                           PlaygroundVesselOwner 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.playground.PlaygroundVesselOwnerDao, please note that the PlaygroundVesselOwnerDao.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 PlaygroundVesselOwnerDao.TRANSFORM_NONE is assumed.

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

toEntity

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

toRemotePlaygroundVesselOwnerFullVOCollection

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

Specified by:
toRemotePlaygroundVesselOwnerFullVOCollection in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerFullVOCollection(java.util.Collection)

toRemotePlaygroundVesselOwnerFullVOArray

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

Specified by:
toRemotePlaygroundVesselOwnerFullVOArray in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerFullVOArray(java.util.Collection)

toRemotePlaygroundVesselOwnerFullVO

protected RemotePlaygroundVesselOwnerFullVO toRemotePlaygroundVesselOwnerFullVO(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 PlaygroundVesselOwnerDaoImpl class if you intend to use reporting queries.

See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerFullVO(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

remotePlaygroundVesselOwnerFullVOToEntityCollection

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

Specified by:
remotePlaygroundVesselOwnerFullVOToEntityCollection in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.remotePlaygroundVesselOwnerFullVOToEntityCollection(java.util.Collection)

toRemotePlaygroundVesselOwnerFullVO

public void toRemotePlaygroundVesselOwnerFullVO(PlaygroundVesselOwner source,
                                                RemotePlaygroundVesselOwnerFullVO target)
Description copied from interface: PlaygroundVesselOwnerDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemotePlaygroundVesselOwnerFullVO(), 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:
toRemotePlaygroundVesselOwnerFullVO in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerFullVO(fr.ifremer.allegro.playground.PlaygroundVesselOwner, fr.ifremer.allegro.playground.generic.vo.RemotePlaygroundVesselOwnerFullVO)

toRemotePlaygroundVesselOwnerFullVO

public RemotePlaygroundVesselOwnerFullVO toRemotePlaygroundVesselOwnerFullVO(PlaygroundVesselOwner entity)
Description copied from interface: PlaygroundVesselOwnerDao
Converts this DAO's entity to an object of type RemotePlaygroundVesselOwnerFullVO.

Specified by:
toRemotePlaygroundVesselOwnerFullVO in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerFullVO(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

remotePlaygroundVesselOwnerFullVOToEntity

public void remotePlaygroundVesselOwnerFullVOToEntity(RemotePlaygroundVesselOwnerFullVO source,
                                                      PlaygroundVesselOwner target,
                                                      boolean copyIfNull)
Description copied from interface: PlaygroundVesselOwnerDao
Copies the fields of RemotePlaygroundVesselOwnerFullVO to the specified entity.

Specified by:
remotePlaygroundVesselOwnerFullVOToEntity in interface PlaygroundVesselOwnerDao
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.playground.PlaygroundVesselOwnerDao#remotePlaygroundVesselOwnerFullVOToEntity(fr.ifremer.allegro.playground.generic.vo.RemotePlaygroundVesselOwnerFullVO, fr.ifremer.allegro.playground.PlaygroundVesselOwner)

toRemotePlaygroundVesselOwnerNaturalIdCollection

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

Specified by:
toRemotePlaygroundVesselOwnerNaturalIdCollection in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerNaturalIdCollection(java.util.Collection)

toRemotePlaygroundVesselOwnerNaturalIdArray

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

Specified by:
toRemotePlaygroundVesselOwnerNaturalIdArray in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerNaturalIdArray(java.util.Collection)

toRemotePlaygroundVesselOwnerNaturalId

protected RemotePlaygroundVesselOwnerNaturalId toRemotePlaygroundVesselOwnerNaturalId(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 PlaygroundVesselOwnerDaoImpl class if you intend to use reporting queries.

See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerNaturalId(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

remotePlaygroundVesselOwnerNaturalIdToEntityCollection

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

Specified by:
remotePlaygroundVesselOwnerNaturalIdToEntityCollection in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.remotePlaygroundVesselOwnerNaturalIdToEntityCollection(java.util.Collection)

toRemotePlaygroundVesselOwnerNaturalId

public void toRemotePlaygroundVesselOwnerNaturalId(PlaygroundVesselOwner source,
                                                   RemotePlaygroundVesselOwnerNaturalId target)
Description copied from interface: PlaygroundVesselOwnerDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemotePlaygroundVesselOwnerNaturalId(), 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:
toRemotePlaygroundVesselOwnerNaturalId in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerNaturalId(fr.ifremer.allegro.playground.PlaygroundVesselOwner, fr.ifremer.allegro.playground.generic.vo.RemotePlaygroundVesselOwnerNaturalId)

toRemotePlaygroundVesselOwnerNaturalId

public RemotePlaygroundVesselOwnerNaturalId toRemotePlaygroundVesselOwnerNaturalId(PlaygroundVesselOwner entity)
Description copied from interface: PlaygroundVesselOwnerDao
Converts this DAO's entity to an object of type RemotePlaygroundVesselOwnerNaturalId.

Specified by:
toRemotePlaygroundVesselOwnerNaturalId in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toRemotePlaygroundVesselOwnerNaturalId(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

remotePlaygroundVesselOwnerNaturalIdToEntity

public void remotePlaygroundVesselOwnerNaturalIdToEntity(RemotePlaygroundVesselOwnerNaturalId source,
                                                         PlaygroundVesselOwner target,
                                                         boolean copyIfNull)
Description copied from interface: PlaygroundVesselOwnerDao
Copies the fields of RemotePlaygroundVesselOwnerNaturalId to the specified entity.

Specified by:
remotePlaygroundVesselOwnerNaturalIdToEntity in interface PlaygroundVesselOwnerDao
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.playground.PlaygroundVesselOwnerDao#remotePlaygroundVesselOwnerNaturalIdToEntity(fr.ifremer.allegro.playground.generic.vo.RemotePlaygroundVesselOwnerNaturalId, fr.ifremer.allegro.playground.PlaygroundVesselOwner)

toClusterPlaygroundVesselOwnerCollection

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

Specified by:
toClusterPlaygroundVesselOwnerCollection in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toClusterPlaygroundVesselOwnerCollection(java.util.Collection)

toClusterPlaygroundVesselOwnerArray

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

Specified by:
toClusterPlaygroundVesselOwnerArray in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toClusterPlaygroundVesselOwnerArray(java.util.Collection)

toClusterPlaygroundVesselOwner

protected ClusterPlaygroundVesselOwner toClusterPlaygroundVesselOwner(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 PlaygroundVesselOwnerDaoImpl class if you intend to use reporting queries.

See Also:
PlaygroundVesselOwnerDao.toClusterPlaygroundVesselOwner(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

clusterPlaygroundVesselOwnerToEntityCollection

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

Specified by:
clusterPlaygroundVesselOwnerToEntityCollection in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.clusterPlaygroundVesselOwnerToEntityCollection(java.util.Collection)

toClusterPlaygroundVesselOwner

public void toClusterPlaygroundVesselOwner(PlaygroundVesselOwner source,
                                           ClusterPlaygroundVesselOwner target)
Description copied from interface: PlaygroundVesselOwnerDao
Copies the fields of the specified entity to the target value object. This method is similar to toClusterPlaygroundVesselOwner(), 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:
toClusterPlaygroundVesselOwner in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toClusterPlaygroundVesselOwner(fr.ifremer.allegro.playground.PlaygroundVesselOwner, fr.ifremer.allegro.playground.generic.cluster.ClusterPlaygroundVesselOwner)

toClusterPlaygroundVesselOwner

public ClusterPlaygroundVesselOwner toClusterPlaygroundVesselOwner(PlaygroundVesselOwner entity)
Description copied from interface: PlaygroundVesselOwnerDao
Converts this DAO's entity to an object of type ClusterPlaygroundVesselOwner.

Specified by:
toClusterPlaygroundVesselOwner in interface PlaygroundVesselOwnerDao
See Also:
PlaygroundVesselOwnerDao.toClusterPlaygroundVesselOwner(fr.ifremer.allegro.playground.PlaygroundVesselOwner)

clusterPlaygroundVesselOwnerToEntity

public void clusterPlaygroundVesselOwnerToEntity(ClusterPlaygroundVesselOwner source,
                                                 PlaygroundVesselOwner target,
                                                 boolean copyIfNull)
Description copied from interface: PlaygroundVesselOwnerDao
Copies the fields of ClusterPlaygroundVesselOwner to the specified entity.

Specified by:
clusterPlaygroundVesselOwnerToEntity in interface PlaygroundVesselOwnerDao
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.playground.PlaygroundVesselOwnerDao#clusterPlaygroundVesselOwnerToEntity(fr.ifremer.allegro.playground.generic.cluster.ClusterPlaygroundVesselOwner, fr.ifremer.allegro.playground.PlaygroundVesselOwner)

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

search

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

search

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

search

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

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


Copyright © 2008-2010 IFREMER. All Rights Reserved.