|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.orm.hibernate3.support.HibernateDaoSupport
fr.ifremer.allegro.referential.gear.GearDaoBase
fr.ifremer.allegro.referential.gear.GearDaoImpl
fr.ifremer.allegro.referential.gear.FishingGearDaoBase
public abstract class FishingGearDaoBase
Base Spring DAO Class: is able to create, update, remove, load, and find
objects of type fr.ifremer.allegro.referential.gear.FishingGear
.
FishingGear
Field Summary |
---|
Fields inherited from interface fr.ifremer.allegro.referential.gear.FishingGearDao |
---|
TRANSFORM_CLUSTERFISHINGGEAR, TRANSFORM_REMOTEFISHINGGEARFULLVO, TRANSFORM_REMOTEFISHINGGEARNATURALID |
Fields inherited from interface fr.ifremer.allegro.referential.gear.GearDao |
---|
TRANSFORM_CLUSTERGEAR, TRANSFORM_NONE, TRANSFORM_REMOTEGEARFULLVO, TRANSFORM_REMOTEGEARNATURALID |
Constructor Summary | |
---|---|
FishingGearDaoBase()
|
Method Summary | |
---|---|
void |
clusterFishingGearToEntity(ClusterFishingGear source,
FishingGear target,
boolean copyIfNull)
Copies the fields of ClusterFishingGear to the specified entity. |
void |
clusterFishingGearToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type ClusterFishingGear to this
DAO's entity. |
java.util.Collection |
create(java.util.Collection entities)
Creates a new instance of fr.ifremer.allegro.referential.gear.Gear and adds from the passed in entities collection |
FishingGear |
create(FishingGear fishingGear)
Creates an instance of fr.ifremer.allegro.referential.gear.FishingGear and adds it to the persistent store. |
FishingGear |
create(GearClassification gearClassification,
java.lang.String label,
java.lang.String name,
Status status)
Creates a new fr.ifremer.allegro.referential.gear.Gear
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
java.util.Collection |
create(int transform,
java.util.Collection entities)
Does the same thing as GearDao.create(fr.ifremer.allegro.referential.gear.Gear) with an
additional flag called transform . |
java.lang.Object |
create(int transform,
FishingGear fishingGear)
Does the same thing as FishingGearDao.create(fr.ifremer.allegro.referential.gear.FishingGear) with an
additional flag called transform . |
java.lang.Object |
create(int transform,
GearClassification gearClassification,
java.lang.String label,
java.lang.String name,
Status status)
Does the same thing as GearDao.create(fr.ifremer.allegro.referential.gear.GearClassification,java.lang.String,java.lang.String,fr.ifremer.allegro.referential.Status) with an
additional flag called transform . |
java.lang.Object |
create(int transform,
java.lang.String label,
java.lang.String name,
java.lang.String description,
java.sql.Timestamp updateDate,
GearClassification gearClassification,
java.util.Collection childGears,
Gear parentGear,
Status status,
java.util.Collection associatedGears,
java.lang.Boolean isActive,
java.lang.Boolean isTowed)
Does the same thing as FishingGearDao.create(java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.referential.gear.GearClassification,java.util.Collection,fr.ifremer.allegro.referential.gear.Gear,fr.ifremer.allegro.referential.Status,java.util.Collection,java.lang.Boolean,java.lang.Boolean) with an
additional flag called transform . |
FishingGear |
create(java.lang.String label,
java.lang.String name,
java.lang.String description,
java.sql.Timestamp updateDate,
GearClassification gearClassification,
java.util.Collection childGears,
Gear parentGear,
Status status,
java.util.Collection associatedGears,
java.lang.Boolean isActive,
java.lang.Boolean isTowed)
Creates a new fr.ifremer.allegro.referential.gear.FishingGear
instance from all attributes and
properties and adds it to the persistent store. |
FishingGear |
createFromClusterFishingGear(ClusterFishingGear clusterFishingGear)
|
java.util.Collection |
findFishingGearByGearClassification(GearClassification gearClassification)
|
java.util.Collection |
findFishingGearByGearClassification(int transform,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification) with an
additional flag called transform . |
java.util.Collection |
findFishingGearByGearClassification(int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByGearClassification(int transform,
int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByGearClassification(int transform,
java.lang.String queryString,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional argument called queryString . |
java.util.Collection |
findFishingGearByGearClassification(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(int, String, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByGearClassification(java.lang.String queryString,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification) with an
additional argument called queryString . |
java.util.Collection |
findFishingGearByGearClassification(java.lang.String queryString,
int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as FishingGearDao.findFishingGearByGearClassification(String, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
FishingGear |
findFishingGearById(java.lang.Integer id)
|
java.lang.Object |
findFishingGearById(int transform,
java.lang.Integer id)
Does the same thing as FishingGearDao.findFishingGearById(java.lang.Integer) with an
additional flag called transform . |
java.lang.Object |
findFishingGearById(int transform,
java.lang.String queryString,
java.lang.Integer id)
Does the same thing as FishingGearDao.findFishingGearById(int, java.lang.Integer) with an
additional argument called queryString . |
FishingGear |
findFishingGearById(java.lang.String queryString,
java.lang.Integer id)
Does the same thing as FishingGearDao.findFishingGearById(java.lang.Integer) with an
additional argument called queryString . |
FishingGear |
findFishingGearByNaturalId(java.lang.Integer id)
|
java.lang.Object |
findFishingGearByNaturalId(int transform,
java.lang.Integer id)
Does the same thing as FishingGearDao.findFishingGearByNaturalId(java.lang.Integer) with an
additional flag called transform . |
java.lang.Object |
findFishingGearByNaturalId(int transform,
java.lang.String queryString,
java.lang.Integer id)
Does the same thing as FishingGearDao.findFishingGearByNaturalId(int, java.lang.Integer) with an
additional argument called queryString . |
FishingGear |
findFishingGearByNaturalId(java.lang.String queryString,
java.lang.Integer id)
Does the same thing as FishingGearDao.findFishingGearByNaturalId(java.lang.Integer) with an
additional argument called queryString . |
java.util.Collection |
findFishingGearByParentGear(Gear parentGear)
|
java.util.Collection |
findFishingGearByParentGear(int transform,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear) with an
additional flag called transform . |
java.util.Collection |
findFishingGearByParentGear(int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByParentGear(int transform,
int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByParentGear(int transform,
java.lang.String queryString,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear) with an
additional argument called queryString . |
java.util.Collection |
findFishingGearByParentGear(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(int, String, fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByParentGear(java.lang.String queryString,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear) with an
additional argument called queryString . |
java.util.Collection |
findFishingGearByParentGear(java.lang.String queryString,
int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as FishingGearDao.findFishingGearByParentGear(String, fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByStatus(int transform,
int pageNumber,
int pageSize,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(int, fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByStatus(int pageNumber,
int pageSize,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByStatus(int transform,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status) with an
additional flag called transform . |
java.util.Collection |
findFishingGearByStatus(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(int, String, fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByStatus(int transform,
java.lang.String queryString,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(int, fr.ifremer.allegro.referential.Status) with an
additional argument called queryString . |
java.util.Collection |
findFishingGearByStatus(Status status)
|
java.util.Collection |
findFishingGearByStatus(java.lang.String queryString,
int pageNumber,
int pageSize,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(String, fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findFishingGearByStatus(java.lang.String queryString,
Status status)
Does the same thing as FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status) with an
additional argument called queryString . |
java.util.Collection |
findGearByGearClassification(GearClassification gearClassification)
|
java.util.Collection |
findGearByGearClassification(int transform,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification) with an
additional flag called transform . |
java.util.Collection |
findGearByGearClassification(int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByGearClassification(int transform,
int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByGearClassification(int transform,
java.lang.String queryString,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional argument called queryString . |
java.util.Collection |
findGearByGearClassification(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(int, String, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByGearClassification(java.lang.String queryString,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification) with an
additional argument called queryString . |
java.util.Collection |
findGearByGearClassification(java.lang.String queryString,
int pageNumber,
int pageSize,
GearClassification gearClassification)
Does the same thing as GearDao.findGearByGearClassification(String, fr.ifremer.allegro.referential.gear.GearClassification) with an
additional two arguments called pageNumber and pageSize . |
Gear |
findGearById(java.lang.Integer id)
|
java.lang.Object |
findGearById(int transform,
java.lang.Integer id)
Does the same thing as GearDao.findGearById(java.lang.Integer) with an
additional flag called transform . |
java.lang.Object |
findGearById(int transform,
java.lang.String queryString,
java.lang.Integer id)
Does the same thing as GearDao.findGearById(int, java.lang.Integer) with an
additional argument called queryString . |
Gear |
findGearById(java.lang.String queryString,
java.lang.Integer id)
Does the same thing as GearDao.findGearById(java.lang.Integer) with an
additional argument called queryString . |
Gear |
findGearByNaturalId(java.lang.Integer id)
|
java.lang.Object |
findGearByNaturalId(int transform,
java.lang.Integer id)
Does the same thing as GearDao.findGearByNaturalId(java.lang.Integer) with an
additional flag called transform . |
java.lang.Object |
findGearByNaturalId(int transform,
java.lang.String queryString,
java.lang.Integer id)
Does the same thing as GearDao.findGearByNaturalId(int, java.lang.Integer) with an
additional argument called queryString . |
Gear |
findGearByNaturalId(java.lang.String queryString,
java.lang.Integer id)
Does the same thing as GearDao.findGearByNaturalId(java.lang.Integer) with an
additional argument called queryString . |
java.util.Collection |
findGearByParentGear(Gear parentGear)
|
java.util.Collection |
findGearByParentGear(int transform,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear) with an
additional flag called transform . |
java.util.Collection |
findGearByParentGear(int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByParentGear(int transform,
int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByParentGear(int transform,
java.lang.String queryString,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear) with an
additional argument called queryString . |
java.util.Collection |
findGearByParentGear(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(int, String, fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByParentGear(java.lang.String queryString,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear) with an
additional argument called queryString . |
java.util.Collection |
findGearByParentGear(java.lang.String queryString,
int pageNumber,
int pageSize,
Gear parentGear)
Does the same thing as GearDao.findGearByParentGear(String, fr.ifremer.allegro.referential.gear.Gear) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByStatus(int transform,
int pageNumber,
int pageSize,
Status status)
Does the same thing as GearDao.findGearByStatus(int, fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByStatus(int pageNumber,
int pageSize,
Status status)
Does the same thing as GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByStatus(int transform,
Status status)
Does the same thing as GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status) with an
additional flag called transform . |
java.util.Collection |
findGearByStatus(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
Status status)
Does the same thing as GearDao.findGearByStatus(int, String, fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByStatus(int transform,
java.lang.String queryString,
Status status)
Does the same thing as GearDao.findGearByStatus(int, fr.ifremer.allegro.referential.Status) with an
additional argument called queryString . |
java.util.Collection |
findGearByStatus(Status status)
|
java.util.Collection |
findGearByStatus(java.lang.String queryString,
int pageNumber,
int pageSize,
Status status)
Does the same thing as GearDao.findGearByStatus(String, fr.ifremer.allegro.referential.Status) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
findGearByStatus(java.lang.String queryString,
Status status)
Does the same thing as GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status) with an
additional argument called queryString . |
ClusterFishingGear[] |
getAllClusterFishingGearSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp,
java.lang.Integer userId,
java.lang.Integer[] registrationLocationIds,
java.lang.Integer pageNumber,
java.lang.Integer pageSize)
|
java.util.Collection |
getAllFishingGear()
|
java.util.Collection |
getAllFishingGear(int transform)
Does the same thing as FishingGearDao.getAllFishingGear() with an
additional flag called transform . |
java.util.Collection |
getAllFishingGear(int pageNumber,
int pageSize)
Does the same thing as FishingGearDao.getAllFishingGear() with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGear(int transform,
int pageNumber,
int pageSize)
Does the same thing as FishingGearDao.getAllFishingGear(int) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGear(int transform,
java.lang.String queryString)
Does the same thing as FishingGearDao.getAllFishingGear(int) with an
additional argument called queryString . |
java.util.Collection |
getAllFishingGear(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize)
Does the same thing as FishingGearDao.getAllFishingGear(int, String) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGear(java.lang.String queryString)
Does the same thing as FishingGearDao.getAllFishingGear() with an
additional argument called queryString . |
java.util.Collection |
getAllFishingGear(java.lang.String queryString,
int pageNumber,
int pageSize)
Does the same thing as FishingGearDao.getAllFishingGear(String) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(int transform,
int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(int, java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(int, String, java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(int transform,
java.lang.String queryString,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(int, java.sql.Timestamp) with an
additional argument called queryString . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(int transform,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(java.sql.Timestamp) with an
additional flag called transform . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(java.lang.String queryString,
int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(String, java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(java.lang.String queryString,
java.sql.Timestamp updateDate)
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(java.sql.Timestamp) with an
additional argument called queryString . |
java.util.Collection |
getAllFishingGearSinceDateSynchro(java.sql.Timestamp updateDate)
|
java.util.Collection |
getAllGear()
|
java.util.Collection |
getAllGear(int transform)
Does the same thing as GearDao.getAllGear() with an
additional flag called transform . |
java.util.Collection |
getAllGear(int pageNumber,
int pageSize)
Does the same thing as GearDao.getAllGear() with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGear(int transform,
int pageNumber,
int pageSize)
Does the same thing as GearDao.getAllGear(int) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGear(int transform,
java.lang.String queryString)
Does the same thing as GearDao.getAllGear(int) with an
additional argument called queryString . |
java.util.Collection |
getAllGear(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize)
Does the same thing as GearDao.getAllGear(int, String) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGear(java.lang.String queryString)
Does the same thing as GearDao.getAllGear() with an
additional argument called queryString . |
java.util.Collection |
getAllGear(java.lang.String queryString,
int pageNumber,
int pageSize)
Does the same thing as GearDao.getAllGear(String) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGearSinceDateSynchro(int transform,
int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(int, java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGearSinceDateSynchro(int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGearSinceDateSynchro(int transform,
java.lang.String queryString,
int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(int, String, java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGearSinceDateSynchro(int transform,
java.lang.String queryString,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(int, java.sql.Timestamp) with an
additional argument called queryString . |
java.util.Collection |
getAllGearSinceDateSynchro(int transform,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(java.sql.Timestamp) with an
additional flag called transform . |
java.util.Collection |
getAllGearSinceDateSynchro(java.lang.String queryString,
int pageNumber,
int pageSize,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(String, java.sql.Timestamp) with an
additional two arguments called pageNumber and pageSize . |
java.util.Collection |
getAllGearSinceDateSynchro(java.lang.String queryString,
java.sql.Timestamp updateDate)
Does the same thing as GearDao.getAllGearSinceDateSynchro(java.sql.Timestamp) with an
additional argument called queryString . |
java.util.Collection |
getAllGearSinceDateSynchro(java.sql.Timestamp updateDate)
|
protected FishingGearDao |
getFishingGearDao()
Gets the reference to fishingGearDao . |
protected java.security.Principal |
getPrincipal()
Gets the current principal if one has been set,
otherwise returns null . |
protected abstract FishingGear |
handleCreateFromClusterFishingGear(ClusterFishingGear clusterFishingGear)
Performs the core logic for createFromClusterFishingGear(fr.ifremer.allegro.referential.gear.generic.cluster.ClusterFishingGear) |
protected abstract ClusterFishingGear[] |
handleGetAllClusterFishingGearSinceDateSynchro(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 getAllClusterFishingGearSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer) |
FishingGear |
load(java.lang.Integer id)
Loads an instance of fr.ifremer.allegro.referential.gear.Gear from the persistent store. |
java.lang.Object |
load(int transform,
java.lang.Integer id)
Does the same thing as GearDao.load(java.lang.Integer) with an
additional flag called transform . |
java.util.Collection |
loadAll()
Loads all entities of type Gear . |
java.util.Collection |
loadAll(int transform)
Does the same thing as GearDao.loadAll() with an
additional flag called transform . |
java.util.Collection |
loadAll(int pageNumber,
int pageSize)
Does the same thing as GearDao.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 GearDao.loadAll(int) with an
additional two arguments called pageNumber and pageSize . |
void |
remoteFishingGearFullVOToEntity(RemoteFishingGearFullVO source,
FishingGear target,
boolean copyIfNull)
Copies the fields of RemoteFishingGearFullVO to the specified entity. |
void |
remoteFishingGearFullVOToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type RemoteFishingGearFullVO to this
DAO's entity. |
void |
remoteFishingGearNaturalIdToEntity(RemoteFishingGearNaturalId source,
FishingGear target,
boolean copyIfNull)
Copies the fields of RemoteFishingGearNaturalId to the specified entity. |
void |
remoteFishingGearNaturalIdToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type RemoteFishingGearNaturalId to this
DAO's entity. |
void |
remove(java.util.Collection entities)
Removes all entities in the given entities |
void |
remove(FishingGear fishingGear)
Removes the instance of fr.ifremer.allegro.referential.gear.FishingGear from the persistent store. |
void |
remove(java.lang.Integer id)
Removes the instance of fr.ifremer.allegro.referential.gear.Gear having the given identifier from the persistent store. |
PaginationResult |
search(int transform,
int pageNumber,
int pageSize,
Search search)
Does the same thing as {@link #search(int, fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize . |
PaginationResult |
search(int pageNumber,
int pageSize,
Search search)
Does the same thing as {@link #search(fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize . |
java.util.Set |
search(int transform,
Search search)
Does the same thing as GearDao.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 |
setFishingGearDao(FishingGearDao fishingGearDao)
Sets the reference to fishingGearDao . |
ClusterFishingGear |
toClusterFishingGear(FishingGear entity)
Converts this DAO's entity to an object of type ClusterFishingGear . |
void |
toClusterFishingGear(FishingGear source,
ClusterFishingGear target)
Copies the fields of the specified entity to the target value object. |
protected ClusterFishingGear |
toClusterFishingGear(java.lang.Object[] row)
Default implementation for transforming the results of a report query into a value object. |
ClusterFishingGear[] |
toClusterFishingGearArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type ClusterFishingGear . |
void |
toClusterFishingGearCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type ClusterFishingGear . |
protected FishingGear |
toEntity(java.lang.Object[] row)
|
RemoteFishingGearFullVO |
toRemoteFishingGearFullVO(FishingGear entity)
Converts this DAO's entity to an object of type RemoteFishingGearFullVO . |
void |
toRemoteFishingGearFullVO(FishingGear source,
RemoteFishingGearFullVO target)
Copies the fields of the specified entity to the target value object. |
protected RemoteFishingGearFullVO |
toRemoteFishingGearFullVO(java.lang.Object[] row)
Default implementation for transforming the results of a report query into a value object. |
RemoteFishingGearFullVO[] |
toRemoteFishingGearFullVOArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type RemoteFishingGearFullVO . |
void |
toRemoteFishingGearFullVOCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type RemoteFishingGearFullVO . |
RemoteFishingGearNaturalId |
toRemoteFishingGearNaturalId(FishingGear entity)
Converts this DAO's entity to an object of type RemoteFishingGearNaturalId . |
void |
toRemoteFishingGearNaturalId(FishingGear source,
RemoteFishingGearNaturalId target)
Copies the fields of the specified entity to the target value object. |
protected RemoteFishingGearNaturalId |
toRemoteFishingGearNaturalId(java.lang.Object[] row)
Default implementation for transforming the results of a report query into a value object. |
RemoteFishingGearNaturalId[] |
toRemoteFishingGearNaturalIdArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type RemoteFishingGearNaturalId . |
void |
toRemoteFishingGearNaturalIdCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type RemoteFishingGearNaturalId . |
protected void |
transformEntities(int transform,
java.util.Collection entities)
Transforms a collection of entities using the transformEntity(int,fr.ifremer.allegro.referential.gear.FishingGear)
method. |
protected java.lang.Object |
transformEntity(int transform,
FishingGear 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.gear.FishingGearDao , please note
that the GearDao.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(FishingGear fishingGear)
Updates the fishingGear instance in the persistent store. |
Methods inherited from class fr.ifremer.allegro.referential.gear.GearDaoImpl |
---|
clusterGearToEntity, clusterGearToEntity, handleCreateFromClusterGear, handleGetAllClusterGearSinceDateSynchro, remoteGearFullVOToEntity, remoteGearFullVOToEntity, remoteGearNaturalIdToEntity, remoteGearNaturalIdToEntity, toClusterGear, toClusterGear, toRemoteGearFullVO, toRemoteGearFullVO, toRemoteGearNaturalId, toRemoteGearNaturalId |
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.gear.FishingGearDao |
---|
clusterFishingGearToEntity, remoteFishingGearFullVOToEntity, remoteFishingGearNaturalIdToEntity |
Constructor Detail |
---|
public FishingGearDaoBase()
Method Detail |
---|
public void setFishingGearDao(FishingGearDao fishingGearDao)
fishingGearDao
.
protected FishingGearDao getFishingGearDao()
fishingGearDao
.
public java.lang.Object load(int transform, java.lang.Integer id)
GearDao
Does the same thing as GearDao.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.
load
in interface FishingGearDao
load
in interface GearDao
load
in class GearDaoBase
id
- identifier of the entity to load
FishingGearDao.load(int, java.lang.Integer)
public FishingGear load(java.lang.Integer id)
GearDao
load
in interface FishingGearDao
load
in interface GearDao
load
in class GearDaoBase
FishingGearDao.load(java.lang.Integer)
public java.util.Collection loadAll()
GearDao
Gear
.
loadAll
in interface FishingGearDao
loadAll
in interface GearDao
loadAll
in class GearDaoBase
FishingGearDao.loadAll()
public java.util.Collection loadAll(int transform)
GearDao
Does the same thing as GearDao.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.
loadAll
in interface FishingGearDao
loadAll
in interface GearDao
loadAll
in class GearDaoBase
transform
- the flag indicating what transformation to use.
FishingGearDao.loadAll(int)
public java.util.Collection loadAll(int pageNumber, int pageSize)
GearDao
Does the same thing as GearDao.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.
loadAll
in interface FishingGearDao
loadAll
in interface GearDao
loadAll
in class GearDaoBase
pageNumber
- the page number to retrieve when paging results.pageSize
- the size of the page to retrieve when paging results.
FishingGearDao.loadAll(int, int)
public java.util.Collection loadAll(int transform, int pageNumber, int pageSize)
GearDao
Does the same thing as GearDao.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.
loadAll
in interface FishingGearDao
loadAll
in interface GearDao
loadAll
in class GearDaoBase
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.
FishingGearDao.loadAll(int, int, int)
public FishingGear create(FishingGear fishingGear)
FishingGearDao
create
in interface FishingGearDao
FishingGearDao.create(fr.ifremer.allegro.referential.gear.FishingGear)
public java.lang.Object create(int transform, FishingGear fishingGear)
FishingGearDao
Does the same thing as FishingGearDao.create(fr.ifremer.allegro.referential.gear.FishingGear)
with an
additional flag called transform
. If this flag is set to TRANSFORM_NONE
then
the returned entity will NOT be transformed. If this flag is any of the other constants
defined here then the result WILL BE passed through an operation which can optionally
transform the entity (into a value object for example). By default, transformation does
not occur.
create
in interface FishingGearDao
FishingGearDao.create(int transform, fr.ifremer.allegro.referential.gear.FishingGear)
public java.util.Collection create(java.util.Collection entities)
GearDao
entities
collection
create
in interface FishingGearDao
create
in interface GearDao
create
in class GearDaoBase
entities
- the collection of fr.ifremer.allegro.referential.gear.Gear
instances to create.
FishingGearDao.create(java.util.Collection)
public java.util.Collection create(int transform, java.util.Collection entities)
GearDao
Does the same thing as GearDao.create(fr.ifremer.allegro.referential.gear.Gear)
with an
additional flag called transform
. If this flag is set to TRANSFORM_NONE
then
the returned entity will NOT be transformed. If this flag is any of the other constants
defined here then the result WILL BE passed through an operation which can optionally
transform the entities (into value objects for example). By default, transformation does
not occur.
create
in interface FishingGearDao
create
in interface GearDao
create
in class GearDaoBase
FishingGearDao.create(int, java.util.Collection)
public FishingGear create(java.lang.String label, java.lang.String name, java.lang.String description, java.sql.Timestamp updateDate, GearClassification gearClassification, java.util.Collection childGears, Gear parentGear, Status status, java.util.Collection associatedGears, java.lang.Boolean isActive, java.lang.Boolean isTowed)
FishingGearDao
Creates a new fr.ifremer.allegro.referential.gear.FishingGear
instance from all attributes and
properties and adds it to the persistent store.
create
in interface FishingGearDao
fr.ifremer.allegro.referential.gear.GearDao#create(java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.referential.gear.GearClassification,java.util.Collection,fr.ifremer.allegro.referential.gear.Gear,fr.ifremer.allegro.referential.Status,java.util.Collection,java.lang.Boolean,java.lang.Boolean)
public java.lang.Object create(int transform, java.lang.String label, java.lang.String name, java.lang.String description, java.sql.Timestamp updateDate, GearClassification gearClassification, java.util.Collection childGears, Gear parentGear, Status status, java.util.Collection associatedGears, java.lang.Boolean isActive, java.lang.Boolean isTowed)
FishingGearDao
Does the same thing as FishingGearDao.create(java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.referential.gear.GearClassification,java.util.Collection,fr.ifremer.allegro.referential.gear.Gear,fr.ifremer.allegro.referential.Status,java.util.Collection,java.lang.Boolean,java.lang.Boolean)
with an
additional flag called transform
. If this flag is set to TRANSFORM_NONE
then
the returned entity will NOT be transformed. If this flag is any of the other constants
defined here then the result WILL BE passed through an operation which can optionally
transform the entity (into a value object for example). By default, transformation does
not occur.
create
in interface FishingGearDao
fr.ifremer.allegro.referential.gear.GearDao#create(int, java.lang.String,java.lang.String,java.lang.String,java.sql.Timestamp,fr.ifremer.allegro.referential.gear.GearClassification,java.util.Collection,fr.ifremer.allegro.referential.gear.Gear,fr.ifremer.allegro.referential.Status,java.util.Collection,java.lang.Boolean,java.lang.Boolean)
public FishingGear create(GearClassification gearClassification, java.lang.String label, java.lang.String name, Status status)
GearDao
Creates a new fr.ifremer.allegro.referential.gear.Gear
instance from only required properties (attributes
and association ends) and adds it to the persistent store.
create
in interface FishingGearDao
create
in interface GearDao
create
in class GearDaoBase
FishingGearDao.create(fr.ifremer.allegro.referential.gear.GearClassification,java.lang.String,java.lang.String,fr.ifremer.allegro.referential.Status)
public java.lang.Object create(int transform, GearClassification gearClassification, java.lang.String label, java.lang.String name, Status status)
GearDao
Does the same thing as GearDao.create(fr.ifremer.allegro.referential.gear.GearClassification,java.lang.String,java.lang.String,fr.ifremer.allegro.referential.Status)
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.
create
in interface FishingGearDao
create
in interface GearDao
create
in class GearDaoBase
FishingGearDao.create(int, fr.ifremer.allegro.referential.gear.GearClassification,java.lang.String,java.lang.String,fr.ifremer.allegro.referential.Status)
public void update(FishingGear fishingGear)
FishingGearDao
fishingGear
instance in the persistent store.
update
in interface FishingGearDao
FishingGearDao.update(fr.ifremer.allegro.referential.gear.FishingGear)
public void update(java.util.Collection entities)
GearDao
entities
collection in the persistent store.
update
in interface FishingGearDao
update
in interface GearDao
update
in class GearDaoBase
GearDao.update(java.util.Collection)
public void remove(FishingGear fishingGear)
FishingGearDao
remove
in interface FishingGearDao
FishingGearDao.remove(fr.ifremer.allegro.referential.gear.FishingGear)
public void remove(java.lang.Integer id)
GearDao
identifier
from the persistent store.
remove
in interface FishingGearDao
remove
in interface GearDao
remove
in class GearDaoBase
FishingGearDao.remove(java.lang.Integer)
public void remove(java.util.Collection entities)
GearDao
entities collection.
- Specified by:
remove
in interface FishingGearDao
- Specified by:
remove
in interface GearDao
- Overrides:
remove
in class GearDaoBase
- See Also:
GearDao.remove(java.util.Collection)
public java.util.Collection getAllFishingGear()
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear()
public java.util.Collection getAllFishingGear(int transform)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear()
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.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(int)
public java.util.Collection getAllFishingGear(java.lang.String queryString)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear()
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.getAllFishingGear()
.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(java.lang.String)
public java.util.Collection getAllFishingGear(int pageNumber, int pageSize)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear()
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.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(int, int)
public java.util.Collection getAllFishingGear(java.lang.String queryString, int pageNumber, int pageSize)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear(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.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(String, int, int)
public java.util.Collection getAllFishingGear(int transform, java.lang.String queryString)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear(int)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.getAllFishingGear(int)
.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(int, String)
public java.util.Collection getAllFishingGear(int transform, int pageNumber, int pageSize)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear(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.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(int, int, int)
public java.util.Collection getAllFishingGear(int transform, java.lang.String queryString, int pageNumber, int pageSize)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGear(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.
getAllFishingGear
in interface FishingGearDao
FishingGearDao.getAllFishingGear(int, java.lang.String, int, int)
public FishingGear findFishingGearById(java.lang.Integer id)
findFishingGearById
in interface FishingGearDao
FishingGearDao.findFishingGearById(java.lang.Integer)
public java.lang.Object findFishingGearById(int transform, java.lang.Integer id)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearById(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.
findFishingGearById
in interface FishingGearDao
FishingGearDao.findFishingGearById(int, java.lang.Integer)
public FishingGear findFishingGearById(java.lang.String queryString, java.lang.Integer id)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearById(java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearById(java.lang.Integer)
.
findFishingGearById
in interface FishingGearDao
FishingGearDao.findFishingGearById(java.lang.String, java.lang.Integer)
public java.lang.Object findFishingGearById(int transform, java.lang.String queryString, java.lang.Integer id)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearById(int, java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearById(int, java.lang.Integer id)
.
findFishingGearById
in interface FishingGearDao
FishingGearDao.findFishingGearById(int, java.lang.String, java.lang.Integer)
public java.util.Collection findFishingGearByParentGear(Gear parentGear)
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(int transform, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
with an
additional flag called transform
. If this flag is set to TRANSFORM_NONE
then
finder results will NOT be transformed during retrieval.
If this flag is any of the other constants defined here
then finder results WILL BE passed through an operation which can optionally
transform the entities (into value objects for example). By default, transformation does
not occur.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(java.lang.String queryString, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(java.lang.String, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(int pageNumber, int pageSize, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(java.lang.String queryString, int pageNumber, int pageSize, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(String, fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(String, int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(int transform, java.lang.String queryString, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear parentGear)
.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(int, String, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(int transform, int pageNumber, int pageSize, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(int, int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByParentGear(int transform, java.lang.String queryString, int pageNumber, int pageSize, Gear parentGear)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByParentGear(int, String, fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findFishingGearByParentGear
in interface FishingGearDao
FishingGearDao.findFishingGearByParentGear(int, java.lang.String, int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findFishingGearByGearClassification(GearClassification gearClassification)
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(int transform, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
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.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(java.lang.String queryString, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(java.lang.String, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(int pageNumber, int pageSize, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
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.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(java.lang.String queryString, int pageNumber, int pageSize, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(String, fr.ifremer.allegro.referential.gear.GearClassification)
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.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(String, int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(int transform, java.lang.String queryString, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification gearClassification)
.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(int, String, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(int transform, int pageNumber, int pageSize, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification)
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.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(int, int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByGearClassification(int transform, java.lang.String queryString, int pageNumber, int pageSize, GearClassification gearClassification)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByGearClassification(int, String, fr.ifremer.allegro.referential.gear.GearClassification)
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.
findFishingGearByGearClassification
in interface FishingGearDao
FishingGearDao.findFishingGearByGearClassification(int, java.lang.String, int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findFishingGearByStatus(Status status)
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(int transform, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status)
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.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(java.lang.String queryString, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status)
.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(java.lang.String, fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(int pageNumber, int pageSize, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(fr.ifremer.allegro.referential.Status)
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.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(int, int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(java.lang.String queryString, int pageNumber, int pageSize, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(String, fr.ifremer.allegro.referential.Status)
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.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(String, int, int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(int transform, java.lang.String queryString, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(int, fr.ifremer.allegro.referential.Status)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByStatus(int, fr.ifremer.allegro.referential.Status status)
.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(int, String, fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(int transform, int pageNumber, int pageSize, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(int, fr.ifremer.allegro.referential.Status)
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.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(int, int, int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findFishingGearByStatus(int transform, java.lang.String queryString, int pageNumber, int pageSize, Status status)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByStatus(int, String, fr.ifremer.allegro.referential.Status)
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.
findFishingGearByStatus
in interface FishingGearDao
FishingGearDao.findFishingGearByStatus(int, java.lang.String, int, int, fr.ifremer.allegro.referential.Status)
public FishingGear findFishingGearByNaturalId(java.lang.Integer id)
findFishingGearByNaturalId
in interface FishingGearDao
FishingGearDao.findFishingGearByNaturalId(java.lang.Integer)
public java.lang.Object findFishingGearByNaturalId(int transform, java.lang.Integer id)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByNaturalId(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.
findFishingGearByNaturalId
in interface FishingGearDao
FishingGearDao.findFishingGearByNaturalId(int, java.lang.Integer)
public FishingGear findFishingGearByNaturalId(java.lang.String queryString, java.lang.Integer id)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByNaturalId(java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByNaturalId(java.lang.Integer)
.
findFishingGearByNaturalId
in interface FishingGearDao
FishingGearDao.findFishingGearByNaturalId(java.lang.String, java.lang.Integer)
public java.lang.Object findFishingGearByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
FishingGearDao
Does the same thing as FishingGearDao.findFishingGearByNaturalId(int, java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.findFishingGearByNaturalId(int, java.lang.Integer id)
.
findFishingGearByNaturalId
in interface FishingGearDao
FishingGearDao.findFishingGearByNaturalId(int, java.lang.String, java.lang.Integer)
public java.util.Collection getAllFishingGearSinceDateSynchro(java.sql.Timestamp updateDate)
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(int transform, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(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.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(int, java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(java.lang.String queryString, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(java.sql.Timestamp)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.getAllFishingGearSinceDateSynchro(java.sql.Timestamp)
.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(java.lang.String, java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(int pageNumber, int pageSize, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(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.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(int, int, java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(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.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(String, int, int, java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(int transform, java.lang.String queryString, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(int, java.sql.Timestamp)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in FishingGearDao.getAllFishingGearSinceDateSynchro(int, java.sql.Timestamp updateDate)
.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(int, String, java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(int transform, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(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.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(int, int, int, java.sql.Timestamp)
public java.util.Collection getAllFishingGearSinceDateSynchro(int transform, java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
FishingGearDao
Does the same thing as FishingGearDao.getAllFishingGearSinceDateSynchro(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.
getAllFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllFishingGearSinceDateSynchro(int, java.lang.String, int, int, java.sql.Timestamp)
public java.util.Collection getAllGear()
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear()
public java.util.Collection getAllGear(int transform)
GearDao
Does the same thing as GearDao.getAllGear()
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.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(int)
public java.util.Collection getAllGear(java.lang.String queryString)
GearDao
Does the same thing as GearDao.getAllGear()
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.getAllGear()
.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(java.lang.String)
public java.util.Collection getAllGear(int pageNumber, int pageSize)
GearDao
Does the same thing as GearDao.getAllGear()
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.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(int, int)
public java.util.Collection getAllGear(java.lang.String queryString, int pageNumber, int pageSize)
GearDao
Does the same thing as GearDao.getAllGear(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.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(String, int, int)
public java.util.Collection getAllGear(int transform, java.lang.String queryString)
GearDao
Does the same thing as GearDao.getAllGear(int)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.getAllGear(int)
.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(int, String)
public java.util.Collection getAllGear(int transform, int pageNumber, int pageSize)
GearDao
Does the same thing as GearDao.getAllGear(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.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(int, int, int)
public java.util.Collection getAllGear(int transform, java.lang.String queryString, int pageNumber, int pageSize)
GearDao
Does the same thing as GearDao.getAllGear(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.
getAllGear
in interface GearDao
getAllGear
in class GearDaoBase
GearDao.getAllGear(int, java.lang.String, int, int)
public Gear findGearById(java.lang.Integer id)
findGearById
in interface GearDao
findGearById
in class GearDaoBase
GearDao.findGearById(java.lang.Integer)
public java.lang.Object findGearById(int transform, java.lang.Integer id)
GearDao
Does the same thing as GearDao.findGearById(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.
findGearById
in interface GearDao
findGearById
in class GearDaoBase
GearDao.findGearById(int, java.lang.Integer)
public Gear findGearById(java.lang.String queryString, java.lang.Integer id)
GearDao
Does the same thing as GearDao.findGearById(java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearById(java.lang.Integer)
.
findGearById
in interface GearDao
findGearById
in class GearDaoBase
GearDao.findGearById(java.lang.String, java.lang.Integer)
public java.lang.Object findGearById(int transform, java.lang.String queryString, java.lang.Integer id)
GearDao
Does the same thing as GearDao.findGearById(int, java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearById(int, java.lang.Integer id)
.
findGearById
in interface GearDao
findGearById
in class GearDaoBase
GearDao.findGearById(int, java.lang.String, java.lang.Integer)
public java.util.Collection findGearByParentGear(Gear parentGear)
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(int transform, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
with an
additional flag called transform
. If this flag is set to TRANSFORM_NONE
then
finder results will NOT be transformed during retrieval.
If this flag is any of the other constants defined here
then finder results WILL BE passed through an operation which can optionally
transform the entities (into value objects for example). By default, transformation does
not occur.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(java.lang.String queryString, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(java.lang.String, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(int pageNumber, int pageSize, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(java.lang.String queryString, int pageNumber, int pageSize, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(String, fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(String, int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(int transform, java.lang.String queryString, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear parentGear)
.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(int, String, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(int transform, int pageNumber, int pageSize, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(int, fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(int, int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByParentGear(int transform, java.lang.String queryString, int pageNumber, int pageSize, Gear parentGear)
GearDao
Does the same thing as GearDao.findGearByParentGear(int, String, fr.ifremer.allegro.referential.gear.Gear)
with an
additional two arguments called pageNumber
and pageSize
. The pageNumber
argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the
page retrieved.
findGearByParentGear
in interface GearDao
findGearByParentGear
in class GearDaoBase
GearDao.findGearByParentGear(int, java.lang.String, int, int, fr.ifremer.allegro.referential.gear.Gear)
public java.util.Collection findGearByGearClassification(GearClassification gearClassification)
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(int transform, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
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.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(java.lang.String queryString, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(java.lang.String, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(int pageNumber, int pageSize, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(fr.ifremer.allegro.referential.gear.GearClassification)
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.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(java.lang.String queryString, int pageNumber, int pageSize, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(String, fr.ifremer.allegro.referential.gear.GearClassification)
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.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(String, int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(int transform, java.lang.String queryString, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification gearClassification)
.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(int, String, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(int transform, int pageNumber, int pageSize, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(int, fr.ifremer.allegro.referential.gear.GearClassification)
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.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(int, int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByGearClassification(int transform, java.lang.String queryString, int pageNumber, int pageSize, GearClassification gearClassification)
GearDao
Does the same thing as GearDao.findGearByGearClassification(int, String, fr.ifremer.allegro.referential.gear.GearClassification)
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.
findGearByGearClassification
in interface GearDao
findGearByGearClassification
in class GearDaoBase
GearDao.findGearByGearClassification(int, java.lang.String, int, int, fr.ifremer.allegro.referential.gear.GearClassification)
public java.util.Collection findGearByStatus(Status status)
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(int transform, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status)
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.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(java.lang.String queryString, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status)
.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(java.lang.String, fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(int pageNumber, int pageSize, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(fr.ifremer.allegro.referential.Status)
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.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(int, int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(java.lang.String queryString, int pageNumber, int pageSize, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(String, fr.ifremer.allegro.referential.Status)
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.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(String, int, int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(int transform, java.lang.String queryString, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(int, fr.ifremer.allegro.referential.Status)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByStatus(int, fr.ifremer.allegro.referential.Status status)
.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(int, String, fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(int transform, int pageNumber, int pageSize, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(int, fr.ifremer.allegro.referential.Status)
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.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(int, int, int, fr.ifremer.allegro.referential.Status)
public java.util.Collection findGearByStatus(int transform, java.lang.String queryString, int pageNumber, int pageSize, Status status)
GearDao
Does the same thing as GearDao.findGearByStatus(int, String, fr.ifremer.allegro.referential.Status)
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.
findGearByStatus
in interface GearDao
findGearByStatus
in class GearDaoBase
GearDao.findGearByStatus(int, java.lang.String, int, int, fr.ifremer.allegro.referential.Status)
public Gear findGearByNaturalId(java.lang.Integer id)
findGearByNaturalId
in interface GearDao
findGearByNaturalId
in class GearDaoBase
GearDao.findGearByNaturalId(java.lang.Integer)
public java.lang.Object findGearByNaturalId(int transform, java.lang.Integer id)
GearDao
Does the same thing as GearDao.findGearByNaturalId(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.
findGearByNaturalId
in interface GearDao
findGearByNaturalId
in class GearDaoBase
GearDao.findGearByNaturalId(int, java.lang.Integer)
public Gear findGearByNaturalId(java.lang.String queryString, java.lang.Integer id)
GearDao
Does the same thing as GearDao.findGearByNaturalId(java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByNaturalId(java.lang.Integer)
.
findGearByNaturalId
in interface GearDao
findGearByNaturalId
in class GearDaoBase
GearDao.findGearByNaturalId(java.lang.String, java.lang.Integer)
public java.lang.Object findGearByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
GearDao
Does the same thing as GearDao.findGearByNaturalId(int, java.lang.Integer)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.findGearByNaturalId(int, java.lang.Integer id)
.
findGearByNaturalId
in interface GearDao
findGearByNaturalId
in class GearDaoBase
GearDao.findGearByNaturalId(int, java.lang.String, java.lang.Integer)
public java.util.Collection getAllGearSinceDateSynchro(java.sql.Timestamp updateDate)
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(int transform, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(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.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(int, java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(java.lang.String queryString, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(java.sql.Timestamp)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.getAllGearSinceDateSynchro(java.sql.Timestamp)
.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(java.lang.String, java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(int pageNumber, int pageSize, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(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.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(int, int, java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(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.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(String, int, int, java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(int transform, java.lang.String queryString, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(int, java.sql.Timestamp)
with an
additional argument called queryString
. This queryString
argument allows you to override the query string defined in GearDao.getAllGearSinceDateSynchro(int, java.sql.Timestamp updateDate)
.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(int, String, java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(int transform, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(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.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(int, int, int, java.sql.Timestamp)
public java.util.Collection getAllGearSinceDateSynchro(int transform, java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
GearDao
Does the same thing as GearDao.getAllGearSinceDateSynchro(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.
getAllGearSinceDateSynchro
in interface GearDao
getAllGearSinceDateSynchro
in class GearDaoBase
GearDao.getAllGearSinceDateSynchro(int, java.lang.String, int, int, java.sql.Timestamp)
public FishingGear createFromClusterFishingGear(ClusterFishingGear clusterFishingGear)
createFromClusterFishingGear
in interface FishingGearDao
FishingGearDao.createFromClusterFishingGear(fr.ifremer.allegro.referential.gear.generic.cluster.ClusterFishingGear)
protected abstract FishingGear handleCreateFromClusterFishingGear(ClusterFishingGear clusterFishingGear) throws java.lang.Exception
createFromClusterFishingGear(fr.ifremer.allegro.referential.gear.generic.cluster.ClusterFishingGear)
java.lang.Exception
public ClusterFishingGear[] getAllClusterFishingGearSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
getAllClusterFishingGearSinceDateSynchro
in interface FishingGearDao
FishingGearDao.getAllClusterFishingGearSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)
protected abstract ClusterFishingGear[] handleGetAllClusterFishingGearSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize) throws java.lang.Exception
getAllClusterFishingGearSinceDateSynchro(java.sql.Timestamp, java.lang.Integer, java.lang.Integer[], java.lang.Integer, java.lang.Integer)
java.lang.Exception
protected java.lang.Object transformEntity(int transform, FishingGear entity)
transform
flag is set to one of the constants defined in fr.ifremer.allegro.referential.gear.FishingGearDao
, please note
that the GearDao.TRANSFORM_NONE
constant denotes no transformation, so the entity itself
will be returned.
This method will return instances of these types:
FishingGear
- GearDao.TRANSFORM_NONE
RemoteFishingGearFullVO
- TRANSFORM_REMOTEFISHINGGEARFULLVO
RemoteFishingGearNaturalId
- TRANSFORM_REMOTEFISHINGGEARNATURALID
ClusterFishingGear
- TRANSFORM_CLUSTERFISHINGGEAR
GearDao.TRANSFORM_NONE
is assumed.
transform
- one of the constants declared in FishingGearDao
entity
- an entity that was found
transformEntities(int,java.util.Collection)
protected void transformEntities(int transform, java.util.Collection entities)
transformEntity(int,fr.ifremer.allegro.referential.gear.FishingGear)
method. This method does not instantiate a new collection.
This method is to be used internally only.
transformEntities
in class GearDaoBase
transform
- one of the constants declared in fr.ifremer.allegro.referential.gear.FishingGearDao
entities
- the collection of entities to transformtransformEntity(int,fr.ifremer.allegro.referential.gear.FishingGear)
protected FishingGear toEntity(java.lang.Object[] row)
toEntity
in class GearDaoBase
public final void toRemoteFishingGearFullVOCollection(java.util.Collection entities)
FishingGearDao
RemoteFishingGearFullVO
.
toRemoteFishingGearFullVOCollection
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearFullVOCollection(java.util.Collection)
public final RemoteFishingGearFullVO[] toRemoteFishingGearFullVOArray(java.util.Collection entities)
FishingGearDao
RemoteFishingGearFullVO
.
toRemoteFishingGearFullVOArray
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearFullVOArray(java.util.Collection)
protected RemoteFishingGearFullVO toRemoteFishingGearFullVO(java.lang.Object[] row)
FishingGearDaoImpl
class if you intend to use reporting queries.
FishingGearDao.toRemoteFishingGearFullVO(fr.ifremer.allegro.referential.gear.FishingGear)
public final void remoteFishingGearFullVOToEntityCollection(java.util.Collection instances)
FishingGearDao
RemoteFishingGearFullVO
to this
DAO's entity.
remoteFishingGearFullVOToEntityCollection
in interface FishingGearDao
FishingGearDao.remoteFishingGearFullVOToEntityCollection(java.util.Collection)
public void toRemoteFishingGearFullVO(FishingGear source, RemoteFishingGearFullVO target)
FishingGearDao
toRemoteFishingGearFullVO
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearFullVO(fr.ifremer.allegro.referential.gear.FishingGear, fr.ifremer.allegro.referential.gear.generic.vo.RemoteFishingGearFullVO)
public RemoteFishingGearFullVO toRemoteFishingGearFullVO(FishingGear entity)
FishingGearDao
RemoteFishingGearFullVO
.
toRemoteFishingGearFullVO
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearFullVO(fr.ifremer.allegro.referential.gear.FishingGear)
public void remoteFishingGearFullVOToEntity(RemoteFishingGearFullVO source, FishingGear target, boolean copyIfNull)
FishingGearDao
RemoteFishingGearFullVO
to the specified entity.
remoteFishingGearFullVOToEntity
in interface FishingGearDao
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.fr.ifremer.allegro.referential.gear.FishingGearDao#remoteFishingGearFullVOToEntity(fr.ifremer.allegro.referential.gear.generic.vo.RemoteFishingGearFullVO, fr.ifremer.allegro.referential.gear.FishingGear)
public final void toRemoteFishingGearNaturalIdCollection(java.util.Collection entities)
FishingGearDao
RemoteFishingGearNaturalId
.
toRemoteFishingGearNaturalIdCollection
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearNaturalIdCollection(java.util.Collection)
public final RemoteFishingGearNaturalId[] toRemoteFishingGearNaturalIdArray(java.util.Collection entities)
FishingGearDao
RemoteFishingGearNaturalId
.
toRemoteFishingGearNaturalIdArray
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearNaturalIdArray(java.util.Collection)
protected RemoteFishingGearNaturalId toRemoteFishingGearNaturalId(java.lang.Object[] row)
FishingGearDaoImpl
class if you intend to use reporting queries.
FishingGearDao.toRemoteFishingGearNaturalId(fr.ifremer.allegro.referential.gear.FishingGear)
public final void remoteFishingGearNaturalIdToEntityCollection(java.util.Collection instances)
FishingGearDao
RemoteFishingGearNaturalId
to this
DAO's entity.
remoteFishingGearNaturalIdToEntityCollection
in interface FishingGearDao
FishingGearDao.remoteFishingGearNaturalIdToEntityCollection(java.util.Collection)
public void toRemoteFishingGearNaturalId(FishingGear source, RemoteFishingGearNaturalId target)
FishingGearDao
toRemoteFishingGearNaturalId
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearNaturalId(fr.ifremer.allegro.referential.gear.FishingGear, fr.ifremer.allegro.referential.gear.generic.vo.RemoteFishingGearNaturalId)
public RemoteFishingGearNaturalId toRemoteFishingGearNaturalId(FishingGear entity)
FishingGearDao
RemoteFishingGearNaturalId
.
toRemoteFishingGearNaturalId
in interface FishingGearDao
FishingGearDao.toRemoteFishingGearNaturalId(fr.ifremer.allegro.referential.gear.FishingGear)
public void remoteFishingGearNaturalIdToEntity(RemoteFishingGearNaturalId source, FishingGear target, boolean copyIfNull)
FishingGearDao
RemoteFishingGearNaturalId
to the specified entity.
remoteFishingGearNaturalIdToEntity
in interface FishingGearDao
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.fr.ifremer.allegro.referential.gear.FishingGearDao#remoteFishingGearNaturalIdToEntity(fr.ifremer.allegro.referential.gear.generic.vo.RemoteFishingGearNaturalId, fr.ifremer.allegro.referential.gear.FishingGear)
public final void toClusterFishingGearCollection(java.util.Collection entities)
FishingGearDao
ClusterFishingGear
.
toClusterFishingGearCollection
in interface FishingGearDao
FishingGearDao.toClusterFishingGearCollection(java.util.Collection)
public final ClusterFishingGear[] toClusterFishingGearArray(java.util.Collection entities)
FishingGearDao
ClusterFishingGear
.
toClusterFishingGearArray
in interface FishingGearDao
FishingGearDao.toClusterFishingGearArray(java.util.Collection)
protected ClusterFishingGear toClusterFishingGear(java.lang.Object[] row)
FishingGearDaoImpl
class if you intend to use reporting queries.
FishingGearDao.toClusterFishingGear(fr.ifremer.allegro.referential.gear.FishingGear)
public final void clusterFishingGearToEntityCollection(java.util.Collection instances)
FishingGearDao
ClusterFishingGear
to this
DAO's entity.
clusterFishingGearToEntityCollection
in interface FishingGearDao
FishingGearDao.clusterFishingGearToEntityCollection(java.util.Collection)
public void toClusterFishingGear(FishingGear source, ClusterFishingGear target)
FishingGearDao
toClusterFishingGear
in interface FishingGearDao
FishingGearDao.toClusterFishingGear(fr.ifremer.allegro.referential.gear.FishingGear, fr.ifremer.allegro.referential.gear.generic.cluster.ClusterFishingGear)
public ClusterFishingGear toClusterFishingGear(FishingGear entity)
FishingGearDao
ClusterFishingGear
.
toClusterFishingGear
in interface FishingGearDao
FishingGearDao.toClusterFishingGear(fr.ifremer.allegro.referential.gear.FishingGear)
public void clusterFishingGearToEntity(ClusterFishingGear source, FishingGear target, boolean copyIfNull)
FishingGearDao
ClusterFishingGear
to the specified entity.
clusterFishingGearToEntity
in interface FishingGearDao
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.fr.ifremer.allegro.referential.gear.FishingGearDao#clusterFishingGearToEntity(fr.ifremer.allegro.referential.gear.generic.cluster.ClusterFishingGear, fr.ifremer.allegro.referential.gear.FishingGear)
protected java.security.Principal getPrincipal()
principal
if one has been set,
otherwise returns null
.
getPrincipal
in class GearDaoBase
public PaginationResult search(int transform, int pageNumber, int pageSize, Search search)
GearDao
pageNumber
and pageSize
. These flags allow you to
limit your data to a specified page number and size.
search
in interface FishingGearDao
search
in interface GearDao
search
in class GearDaoBase
transform
- the transformation flag.pageNumber
- the page number in the data to retrievepageSize
- the size of the page to retrieve.search
- the search object which provides the search parameters and pagination specification.
PaginationResult
instance.FishingGearDao.search(int, int, int, fr.ifremer.allegro.Search)
public PaginationResult search(int pageNumber, int pageSize, Search search)
GearDao
pageNumber
and pageSize
. These flags allow you to
limit your data to a specified page number and size.
search
in interface FishingGearDao
search
in interface GearDao
search
in class GearDaoBase
pageNumber
- the page number in the data to retrievepageSize
- the size of the page to retrieve.search
- the search object which provides the search parameters and pagination specification.
PaginationResult
instance.FishingGearDao.search(int, int, fr.ifremer.allegro.Search)
public java.util.Set search(int transform, Search search)
GearDao
GearDao.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.
search
in interface FishingGearDao
search
in interface GearDao
search
in class GearDaoBase
transform
- the transformation flag.search
- the search object which provides the search parameters and pagination specification.
FishingGearDao.search(int, fr.ifremer.allegro.Search)
public java.util.Set search(Search search)
GearDao
search
object.
search
in interface FishingGearDao
search
in interface GearDao
search
in class GearDaoBase
search
- the search object which provides the search parameters and pagination specification.
FishingGearDao.search(fr.ifremer.allegro.Search)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |