fr.ifremer.allegro.referential.location
Class LocationAreaDaoBase

java.lang.Object
  extended by org.springframework.orm.hibernate3.support.HibernateDaoSupport
      extended by fr.ifremer.allegro.referential.location.LocationAreaDaoBase
All Implemented Interfaces:
LocationAreaDao
Direct Known Subclasses:
LocationAreaDaoImpl

public abstract class LocationAreaDaoBase
extends org.springframework.orm.hibernate3.support.HibernateDaoSupport
implements LocationAreaDao

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

See Also:
LocationArea

Field Summary
 
Fields inherited from interface fr.ifremer.allegro.referential.location.LocationAreaDao
TRANSFORM_CLUSTERLOCATIONAREA, TRANSFORM_NONE, TRANSFORM_REMOTELOCATIONAREAFULLVO, TRANSFORM_REMOTELOCATIONAREANATURALID
 
Constructor Summary
LocationAreaDaoBase()
           
 
Method Summary
 void clusterLocationAreaToEntity(ClusterLocationArea source, LocationArea target, boolean copyIfNull)
          Copies the fields of ClusterLocationArea to the specified entity.
 void clusterLocationAreaToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterLocationArea to this DAO's entity.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.referential.location.LocationArea and adds from the passed in entities collection
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as LocationAreaDao.create(fr.ifremer.allegro.referential.location.LocationArea) with an additional flag called transform.
 java.lang.Object create(int transform, Location location)
           Does the same thing as LocationAreaDao.create(fr.ifremer.allegro.referential.location.Location) with an additional flag called transform.
 java.lang.Object create(int transform, LocationArea locationArea)
           Does the same thing as LocationAreaDao.create(fr.ifremer.allegro.referential.location.LocationArea) with an additional flag called transform.
 LocationArea create(Location location)
           Creates a new fr.ifremer.allegro.referential.location.LocationArea instance from all attributes and properties and adds it to the persistent store.
 LocationArea create(LocationArea locationArea)
          Creates an instance of fr.ifremer.allegro.referential.location.LocationArea and adds it to the persistent store.
 LocationArea createFromClusterLocationArea(ClusterLocationArea clusterLocationArea)
           
 LocationArea findLocationAreaById(java.lang.Integer id)
           
 java.lang.Object findLocationAreaById(int transform, java.lang.Integer id)
           Does the same thing as LocationAreaDao.findLocationAreaById(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findLocationAreaById(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as LocationAreaDao.findLocationAreaById(int, java.lang.Integer) with an additional argument called queryString.
 LocationArea findLocationAreaById(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as LocationAreaDao.findLocationAreaById(java.lang.Integer) with an additional argument called queryString.
 java.util.Collection findLocationAreaByLocation(int transform, int pageNumber, int pageSize, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(int, fr.ifremer.allegro.referential.location.Location) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findLocationAreaByLocation(int pageNumber, int pageSize, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findLocationAreaByLocation(int transform, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location) with an additional flag called transform.
 java.util.Collection findLocationAreaByLocation(int transform, java.lang.String queryString, int pageNumber, int pageSize, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(int, String, fr.ifremer.allegro.referential.location.Location) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findLocationAreaByLocation(int transform, java.lang.String queryString, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(int, fr.ifremer.allegro.referential.location.Location) with an additional argument called queryString.
 java.util.Collection findLocationAreaByLocation(Location location)
           
 java.util.Collection findLocationAreaByLocation(java.lang.String queryString, int pageNumber, int pageSize, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(String, fr.ifremer.allegro.referential.location.Location) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findLocationAreaByLocation(java.lang.String queryString, Location location)
           Does the same thing as LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location) with an additional argument called queryString.
 LocationArea findLocationAreaByNaturalId(java.lang.Integer id)
           
 java.lang.Object findLocationAreaByNaturalId(int transform, java.lang.Integer id)
           Does the same thing as LocationAreaDao.findLocationAreaByNaturalId(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findLocationAreaByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as LocationAreaDao.findLocationAreaByNaturalId(int, java.lang.Integer) with an additional argument called queryString.
 LocationArea findLocationAreaByNaturalId(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as LocationAreaDao.findLocationAreaByNaturalId(java.lang.Integer) with an additional argument called queryString.
 java.util.Collection getAllLocationArea()
           
 java.util.Collection getAllLocationArea(int transform)
           Does the same thing as LocationAreaDao.getAllLocationArea() with an additional flag called transform.
 java.util.Collection getAllLocationArea(int pageNumber, int pageSize)
           Does the same thing as LocationAreaDao.getAllLocationArea() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllLocationArea(int transform, int pageNumber, int pageSize)
           Does the same thing as LocationAreaDao.getAllLocationArea(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllLocationArea(int transform, java.lang.String queryString)
           Does the same thing as LocationAreaDao.getAllLocationArea(int) with an additional argument called queryString.
 java.util.Collection getAllLocationArea(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as LocationAreaDao.getAllLocationArea(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllLocationArea(java.lang.String queryString)
           Does the same thing as LocationAreaDao.getAllLocationArea() with an additional argument called queryString.
 java.util.Collection getAllLocationArea(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as LocationAreaDao.getAllLocationArea(String) with an additional two arguments called pageNumber and pageSize.
protected  LocationDao getLocationDao()
          Gets the reference to locationDao.
protected  java.security.Principal getPrincipal()
          Gets the current principal if one has been set, otherwise returns null.
protected abstract  LocationArea handleCreateFromClusterLocationArea(ClusterLocationArea clusterLocationArea)
          Performs the core logic for createFromClusterLocationArea(fr.ifremer.allegro.referential.location.generic.cluster.ClusterLocationArea)
 LocationArea load(java.lang.Integer id)
          Loads an instance of fr.ifremer.allegro.referential.location.LocationArea from the persistent store.
 java.lang.Object load(int transform, java.lang.Integer id)
           Does the same thing as LocationAreaDao.load(java.lang.Integer) with an additional flag called transform.
 java.util.Collection loadAll()
          Loads all entities of type LocationArea.
 java.util.Collection loadAll(int transform)
           Does the same thing as LocationAreaDao.loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as LocationAreaDao.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 LocationAreaDao.loadAll(int) with an additional two arguments called pageNumber and pageSize.
 void remoteLocationAreaFullVOToEntity(RemoteLocationAreaFullVO source, LocationArea target, boolean copyIfNull)
          Copies the fields of RemoteLocationAreaFullVO to the specified entity.
 void remoteLocationAreaFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteLocationAreaFullVO to this DAO's entity.
 void remoteLocationAreaNaturalIdToEntity(RemoteLocationAreaNaturalId source, LocationArea target, boolean copyIfNull)
          Copies the fields of RemoteLocationAreaNaturalId to the specified entity.
 void remoteLocationAreaNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteLocationAreaNaturalId to this DAO's entity.
 void remove(java.util.Collection entities)
          Removes all entities in the given entities collection.
 void remove(java.lang.Integer id)
          Removes the instance of fr.ifremer.allegro.referential.location.LocationArea having the given identifier from the persistent store.
 void remove(LocationArea locationArea)
          Removes the instance of fr.ifremer.allegro.referential.location.LocationArea 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 LocationAreaDao.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 setLocationDao(LocationDao locationDao)
          Sets the reference to locationDao.
 ClusterLocationArea toClusterLocationArea(LocationArea entity)
          Converts this DAO's entity to an object of type ClusterLocationArea.
 void toClusterLocationArea(LocationArea source, ClusterLocationArea target)
          Copies the fields of the specified entity to the target value object.
protected  ClusterLocationArea toClusterLocationArea(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 ClusterLocationArea[] toClusterLocationAreaArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterLocationArea.
 void toClusterLocationAreaCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterLocationArea.
protected  LocationArea toEntity(java.lang.Object[] row)
           
 RemoteLocationAreaFullVO toRemoteLocationAreaFullVO(LocationArea entity)
          Converts this DAO's entity to an object of type RemoteLocationAreaFullVO.
 void toRemoteLocationAreaFullVO(LocationArea source, RemoteLocationAreaFullVO target)
          Copies the fields of the specified entity to the target value object.
protected  RemoteLocationAreaFullVO toRemoteLocationAreaFullVO(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemoteLocationAreaFullVO[] toRemoteLocationAreaFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteLocationAreaFullVO.
 void toRemoteLocationAreaFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteLocationAreaFullVO.
 RemoteLocationAreaNaturalId toRemoteLocationAreaNaturalId(LocationArea entity)
          Converts this DAO's entity to an object of type RemoteLocationAreaNaturalId.
 void toRemoteLocationAreaNaturalId(LocationArea source, RemoteLocationAreaNaturalId target)
          Copies the fields of the specified entity to the target value object.
protected  RemoteLocationAreaNaturalId toRemoteLocationAreaNaturalId(java.lang.Object[] row)
          Default implementation for transforming the results of a report query into a value object.
 RemoteLocationAreaNaturalId[] toRemoteLocationAreaNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteLocationAreaNaturalId.
 void toRemoteLocationAreaNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteLocationAreaNaturalId.
protected  void transformEntities(int transform, java.util.Collection entities)
          Transforms a collection of entities using the transformEntity(int,fr.ifremer.allegro.referential.location.LocationArea) method.
protected  java.lang.Object transformEntity(int transform, LocationArea entity)
          Allows transformation of entities into value objects (or something else for that matter), when the transform flag is set to one of the constants defined in fr.ifremer.allegro.referential.location.LocationAreaDao, please note that the LocationAreaDao.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(LocationArea locationArea)
          Updates the locationArea instance in the persistent store.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface fr.ifremer.allegro.referential.location.LocationAreaDao
clusterLocationAreaToEntity, remoteLocationAreaFullVOToEntity, remoteLocationAreaNaturalIdToEntity
 

Constructor Detail

LocationAreaDaoBase

public LocationAreaDaoBase()
Method Detail

setLocationDao

public void setLocationDao(LocationDao locationDao)
Sets the reference to locationDao.


getLocationDao

protected LocationDao getLocationDao()
Gets the reference to locationDao.


load

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

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

load

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

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

loadAll

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

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

loadAll

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

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

loadAll

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

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

loadAll

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

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

create

public LocationArea create(LocationArea locationArea)
Description copied from interface: LocationAreaDao
Creates an instance of fr.ifremer.allegro.referential.location.LocationArea and adds it to the persistent store.

Specified by:
create in interface LocationAreaDao
See Also:
LocationAreaDao.create(fr.ifremer.allegro.referential.location.LocationArea)

create

public java.lang.Object create(int transform,
                               LocationArea locationArea)
Description copied from interface: LocationAreaDao

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

create

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

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

create

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

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

create

public LocationArea create(Location location)
Description copied from interface: LocationAreaDao

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

Specified by:
create in interface LocationAreaDao
See Also:
LocationAreaDao.create(fr.ifremer.allegro.referential.location.Location)

create

public java.lang.Object create(int transform,
                               Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.create(fr.ifremer.allegro.referential.location.Location) 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 LocationAreaDao
See Also:
LocationAreaDao.create(int, fr.ifremer.allegro.referential.location.Location)

update

public void update(LocationArea locationArea)
Description copied from interface: LocationAreaDao
Updates the locationArea instance in the persistent store.

Specified by:
update in interface LocationAreaDao
See Also:
LocationAreaDao.update(fr.ifremer.allegro.referential.location.LocationArea)

update

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

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

remove

public void remove(LocationArea locationArea)
Description copied from interface: LocationAreaDao
Removes the instance of fr.ifremer.allegro.referential.location.LocationArea from the persistent store.

Specified by:
remove in interface LocationAreaDao
See Also:
LocationAreaDao.remove(fr.ifremer.allegro.referential.location.LocationArea)

remove

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

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

remove

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

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

getAllLocationArea

public java.util.Collection getAllLocationArea()
Specified by:
getAllLocationArea in interface LocationAreaDao
See Also:
LocationAreaDao.getAllLocationArea()

getAllLocationArea

public java.util.Collection getAllLocationArea(int transform)
Description copied from interface: LocationAreaDao

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

getAllLocationArea

public java.util.Collection getAllLocationArea(java.lang.String queryString)
Description copied from interface: LocationAreaDao

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

Specified by:
getAllLocationArea in interface LocationAreaDao
See Also:
LocationAreaDao.getAllLocationArea(java.lang.String)

getAllLocationArea

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

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

getAllLocationArea

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

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

getAllLocationArea

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

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

Specified by:
getAllLocationArea in interface LocationAreaDao
See Also:
LocationAreaDao.getAllLocationArea(int, String)

getAllLocationArea

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

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

getAllLocationArea

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

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

findLocationAreaById

public LocationArea findLocationAreaById(java.lang.Integer id)
Specified by:
findLocationAreaById in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaById(java.lang.Integer)

findLocationAreaById

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

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

findLocationAreaById

public LocationArea findLocationAreaById(java.lang.String queryString,
                                         java.lang.Integer id)
Description copied from interface: LocationAreaDao

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

Specified by:
findLocationAreaById in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaById(java.lang.String, java.lang.Integer)

findLocationAreaById

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

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

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

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(Location location)
Specified by:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(int transform,
                                                       Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location) 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:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(int, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(java.lang.String queryString,
                                                       Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location) with an additional argument called queryString. This queryString argument allows you to override the query string defined in LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location).

Specified by:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(java.lang.String, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(int pageNumber,
                                                       int pageSize,
                                                       Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.findLocationAreaByLocation(fr.ifremer.allegro.referential.location.Location) 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:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(int, int, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(java.lang.String queryString,
                                                       int pageNumber,
                                                       int pageSize,
                                                       Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.findLocationAreaByLocation(String, fr.ifremer.allegro.referential.location.Location) 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:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(String, int, int, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(int transform,
                                                       java.lang.String queryString,
                                                       Location location)
Description copied from interface: LocationAreaDao

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

Specified by:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(int, String, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(int transform,
                                                       int pageNumber,
                                                       int pageSize,
                                                       Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.findLocationAreaByLocation(int, fr.ifremer.allegro.referential.location.Location) 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:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(int, int, int, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByLocation

public java.util.Collection findLocationAreaByLocation(int transform,
                                                       java.lang.String queryString,
                                                       int pageNumber,
                                                       int pageSize,
                                                       Location location)
Description copied from interface: LocationAreaDao

Does the same thing as LocationAreaDao.findLocationAreaByLocation(int, String, fr.ifremer.allegro.referential.location.Location) 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:
findLocationAreaByLocation in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByLocation(int, java.lang.String, int, int, fr.ifremer.allegro.referential.location.Location)

findLocationAreaByNaturalId

public LocationArea findLocationAreaByNaturalId(java.lang.Integer id)
Specified by:
findLocationAreaByNaturalId in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByNaturalId(java.lang.Integer)

findLocationAreaByNaturalId

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

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

findLocationAreaByNaturalId

public LocationArea findLocationAreaByNaturalId(java.lang.String queryString,
                                                java.lang.Integer id)
Description copied from interface: LocationAreaDao

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

Specified by:
findLocationAreaByNaturalId in interface LocationAreaDao
See Also:
LocationAreaDao.findLocationAreaByNaturalId(java.lang.String, java.lang.Integer)

findLocationAreaByNaturalId

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

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

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

createFromClusterLocationArea

public LocationArea createFromClusterLocationArea(ClusterLocationArea clusterLocationArea)
Specified by:
createFromClusterLocationArea in interface LocationAreaDao
See Also:
LocationAreaDao.createFromClusterLocationArea(fr.ifremer.allegro.referential.location.generic.cluster.ClusterLocationArea)

handleCreateFromClusterLocationArea

protected abstract LocationArea handleCreateFromClusterLocationArea(ClusterLocationArea clusterLocationArea)
                                                             throws java.lang.Exception
Performs the core logic for createFromClusterLocationArea(fr.ifremer.allegro.referential.location.generic.cluster.ClusterLocationArea)

Throws:
java.lang.Exception

transformEntity

protected java.lang.Object transformEntity(int transform,
                                           LocationArea entity)
Allows transformation of entities into value objects (or something else for that matter), when the transform flag is set to one of the constants defined in fr.ifremer.allegro.referential.location.LocationAreaDao, please note that the LocationAreaDao.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 LocationAreaDao.TRANSFORM_NONE is assumed.

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

transformEntities

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

This method is to be used internally only.

Parameters:
transform - one of the constants declared in fr.ifremer.allegro.referential.location.LocationAreaDao
entities - the collection of entities to transform
See Also:
transformEntity(int,fr.ifremer.allegro.referential.location.LocationArea)

toEntity

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

toRemoteLocationAreaFullVOCollection

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

Specified by:
toRemoteLocationAreaFullVOCollection in interface LocationAreaDao
See Also:
LocationAreaDao.toRemoteLocationAreaFullVOCollection(java.util.Collection)

toRemoteLocationAreaFullVOArray

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

Specified by:
toRemoteLocationAreaFullVOArray in interface LocationAreaDao
See Also:
LocationAreaDao.toRemoteLocationAreaFullVOArray(java.util.Collection)

toRemoteLocationAreaFullVO

protected RemoteLocationAreaFullVO toRemoteLocationAreaFullVO(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 LocationAreaDaoImpl class if you intend to use reporting queries.

See Also:
LocationAreaDao.toRemoteLocationAreaFullVO(fr.ifremer.allegro.referential.location.LocationArea)

remoteLocationAreaFullVOToEntityCollection

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

Specified by:
remoteLocationAreaFullVOToEntityCollection in interface LocationAreaDao
See Also:
LocationAreaDao.remoteLocationAreaFullVOToEntityCollection(java.util.Collection)

toRemoteLocationAreaFullVO

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

toRemoteLocationAreaFullVO

public RemoteLocationAreaFullVO toRemoteLocationAreaFullVO(LocationArea entity)
Description copied from interface: LocationAreaDao
Converts this DAO's entity to an object of type RemoteLocationAreaFullVO.

Specified by:
toRemoteLocationAreaFullVO in interface LocationAreaDao
See Also:
LocationAreaDao.toRemoteLocationAreaFullVO(fr.ifremer.allegro.referential.location.LocationArea)

remoteLocationAreaFullVOToEntity

public void remoteLocationAreaFullVOToEntity(RemoteLocationAreaFullVO source,
                                             LocationArea target,
                                             boolean copyIfNull)
Description copied from interface: LocationAreaDao
Copies the fields of RemoteLocationAreaFullVO to the specified entity.

Specified by:
remoteLocationAreaFullVOToEntity in interface LocationAreaDao
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.
See Also:
fr.ifremer.allegro.referential.location.LocationAreaDao#remoteLocationAreaFullVOToEntity(fr.ifremer.allegro.referential.location.generic.vo.RemoteLocationAreaFullVO, fr.ifremer.allegro.referential.location.LocationArea)

toRemoteLocationAreaNaturalIdCollection

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

Specified by:
toRemoteLocationAreaNaturalIdCollection in interface LocationAreaDao
See Also:
LocationAreaDao.toRemoteLocationAreaNaturalIdCollection(java.util.Collection)

toRemoteLocationAreaNaturalIdArray

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

Specified by:
toRemoteLocationAreaNaturalIdArray in interface LocationAreaDao
See Also:
LocationAreaDao.toRemoteLocationAreaNaturalIdArray(java.util.Collection)

toRemoteLocationAreaNaturalId

protected RemoteLocationAreaNaturalId toRemoteLocationAreaNaturalId(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 LocationAreaDaoImpl class if you intend to use reporting queries.

See Also:
LocationAreaDao.toRemoteLocationAreaNaturalId(fr.ifremer.allegro.referential.location.LocationArea)

remoteLocationAreaNaturalIdToEntityCollection

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

Specified by:
remoteLocationAreaNaturalIdToEntityCollection in interface LocationAreaDao
See Also:
LocationAreaDao.remoteLocationAreaNaturalIdToEntityCollection(java.util.Collection)

toRemoteLocationAreaNaturalId

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

toRemoteLocationAreaNaturalId

public RemoteLocationAreaNaturalId toRemoteLocationAreaNaturalId(LocationArea entity)
Description copied from interface: LocationAreaDao
Converts this DAO's entity to an object of type RemoteLocationAreaNaturalId.

Specified by:
toRemoteLocationAreaNaturalId in interface LocationAreaDao
See Also:
LocationAreaDao.toRemoteLocationAreaNaturalId(fr.ifremer.allegro.referential.location.LocationArea)

remoteLocationAreaNaturalIdToEntity

public void remoteLocationAreaNaturalIdToEntity(RemoteLocationAreaNaturalId source,
                                                LocationArea target,
                                                boolean copyIfNull)
Description copied from interface: LocationAreaDao
Copies the fields of RemoteLocationAreaNaturalId to the specified entity.

Specified by:
remoteLocationAreaNaturalIdToEntity in interface LocationAreaDao
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.
See Also:
fr.ifremer.allegro.referential.location.LocationAreaDao#remoteLocationAreaNaturalIdToEntity(fr.ifremer.allegro.referential.location.generic.vo.RemoteLocationAreaNaturalId, fr.ifremer.allegro.referential.location.LocationArea)

toClusterLocationAreaCollection

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

Specified by:
toClusterLocationAreaCollection in interface LocationAreaDao
See Also:
LocationAreaDao.toClusterLocationAreaCollection(java.util.Collection)

toClusterLocationAreaArray

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

Specified by:
toClusterLocationAreaArray in interface LocationAreaDao
See Also:
LocationAreaDao.toClusterLocationAreaArray(java.util.Collection)

toClusterLocationArea

protected ClusterLocationArea toClusterLocationArea(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 LocationAreaDaoImpl class if you intend to use reporting queries.

See Also:
LocationAreaDao.toClusterLocationArea(fr.ifremer.allegro.referential.location.LocationArea)

clusterLocationAreaToEntityCollection

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

Specified by:
clusterLocationAreaToEntityCollection in interface LocationAreaDao
See Also:
LocationAreaDao.clusterLocationAreaToEntityCollection(java.util.Collection)

toClusterLocationArea

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

toClusterLocationArea

public ClusterLocationArea toClusterLocationArea(LocationArea entity)
Description copied from interface: LocationAreaDao
Converts this DAO's entity to an object of type ClusterLocationArea.

Specified by:
toClusterLocationArea in interface LocationAreaDao
See Also:
LocationAreaDao.toClusterLocationArea(fr.ifremer.allegro.referential.location.LocationArea)

clusterLocationAreaToEntity

public void clusterLocationAreaToEntity(ClusterLocationArea source,
                                        LocationArea target,
                                        boolean copyIfNull)
Description copied from interface: LocationAreaDao
Copies the fields of ClusterLocationArea to the specified entity.

Specified by:
clusterLocationAreaToEntity in interface LocationAreaDao
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.
See Also:
fr.ifremer.allegro.referential.location.LocationAreaDao#clusterLocationAreaToEntity(fr.ifremer.allegro.referential.location.generic.cluster.ClusterLocationArea, fr.ifremer.allegro.referential.location.LocationArea)

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

search

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

search

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

search

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

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


Copyright © 2008-2010 IFREMER. All Rights Reserved.