fr.ifremer.allegro.referential.spatial
Class SpatialItemPointDaoImpl

java.lang.Object
  extended by org.springframework.orm.hibernate3.support.HibernateDaoSupport
      extended by fr.ifremer.allegro.referential.spatial.SpatialItemPointDaoBase
          extended by fr.ifremer.allegro.referential.spatial.SpatialItemPointDaoImpl
All Implemented Interfaces:
SpatialItemPointDao

public class SpatialItemPointDaoImpl
extends SpatialItemPointDaoBase

See Also:
SpatialItemPoint

Field Summary
 
Fields inherited from interface fr.ifremer.allegro.referential.spatial.SpatialItemPointDao
TRANSFORM_CLUSTERSPATIALITEMPOINT, TRANSFORM_NONE, TRANSFORM_REMOTESPATIALITEMPOINTFULLVO, TRANSFORM_REMOTESPATIALITEMPOINTNATURALID
 
Constructor Summary
SpatialItemPointDaoImpl()
           
 
Method Summary
 SpatialItemPoint clusterSpatialItemPointToEntity(ClusterSpatialItemPoint clusterSpatialItemPoint)
          Converts an instance of type ClusterSpatialItemPoint to this DAO's entity.
 void clusterSpatialItemPointToEntity(ClusterSpatialItemPoint source, SpatialItemPoint target, boolean copyIfNull)
          Copies the fields of ClusterSpatialItemPoint to the specified entity.
protected  SpatialItemPoint handleCreateFromClusterSpatialItemPoint(ClusterSpatialItemPoint clusterSpatialItemPoint)
          Performs the core logic for SpatialItemPointDaoBase.createFromClusterSpatialItemPoint(fr.ifremer.allegro.referential.spatial.generic.cluster.ClusterSpatialItemPoint)
 SpatialItemPoint remoteSpatialItemPointFullVOToEntity(RemoteSpatialItemPointFullVO remoteSpatialItemPointFullVO)
          Converts an instance of type RemoteSpatialItemPointFullVO to this DAO's entity.
 void remoteSpatialItemPointFullVOToEntity(RemoteSpatialItemPointFullVO source, SpatialItemPoint target, boolean copyIfNull)
          Copies the fields of RemoteSpatialItemPointFullVO to the specified entity.
 SpatialItemPoint remoteSpatialItemPointNaturalIdToEntity(RemoteSpatialItemPointNaturalId remoteSpatialItemPointNaturalId)
          Converts an instance of type RemoteSpatialItemPointNaturalId to this DAO's entity.
 void remoteSpatialItemPointNaturalIdToEntity(RemoteSpatialItemPointNaturalId source, SpatialItemPoint target, boolean copyIfNull)
          Copies the fields of RemoteSpatialItemPointNaturalId to the specified entity.
 ClusterSpatialItemPoint toClusterSpatialItemPoint(SpatialItemPoint entity)
          Converts this DAO's entity to an object of type ClusterSpatialItemPoint.
 void toClusterSpatialItemPoint(SpatialItemPoint source, ClusterSpatialItemPoint target)
          Copies the fields of the specified entity to the target value object.
 RemoteSpatialItemPointFullVO toRemoteSpatialItemPointFullVO(SpatialItemPoint entity)
          Converts this DAO's entity to an object of type RemoteSpatialItemPointFullVO.
 void toRemoteSpatialItemPointFullVO(SpatialItemPoint source, RemoteSpatialItemPointFullVO target)
          Copies the fields of the specified entity to the target value object.
 RemoteSpatialItemPointNaturalId toRemoteSpatialItemPointNaturalId(SpatialItemPoint entity)
          Converts this DAO's entity to an object of type RemoteSpatialItemPointNaturalId.
 void toRemoteSpatialItemPointNaturalId(SpatialItemPoint source, RemoteSpatialItemPointNaturalId target)
          Copies the fields of the specified entity to the target value object.
 
Methods inherited from class fr.ifremer.allegro.referential.spatial.SpatialItemPointDaoBase
clusterSpatialItemPointToEntityCollection, create, create, create, create, create, create, create, create, createFromClusterSpatialItemPoint, findSpatialItemPointById, findSpatialItemPointById, findSpatialItemPointById, findSpatialItemPointById, findSpatialItemPointByNaturalId, findSpatialItemPointByNaturalId, findSpatialItemPointByNaturalId, findSpatialItemPointByNaturalId, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, findSpatialItemPointBySpatialItem, getAllSpatialItemPoint, getAllSpatialItemPoint, getAllSpatialItemPoint, getAllSpatialItemPoint, getAllSpatialItemPoint, getAllSpatialItemPoint, getAllSpatialItemPoint, getAllSpatialItemPoint, getPrincipal, getSpatialItemDao, load, load, loadAll, loadAll, loadAll, loadAll, remoteSpatialItemPointFullVOToEntityCollection, remoteSpatialItemPointNaturalIdToEntityCollection, remove, remove, remove, search, search, search, search, setSpatialItemDao, toClusterSpatialItemPoint, toClusterSpatialItemPointArray, toClusterSpatialItemPointCollection, toEntity, toRemoteSpatialItemPointFullVO, toRemoteSpatialItemPointFullVOArray, toRemoteSpatialItemPointFullVOCollection, toRemoteSpatialItemPointNaturalId, toRemoteSpatialItemPointNaturalIdArray, toRemoteSpatialItemPointNaturalIdCollection, transformEntities, transformEntity, update, update
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpatialItemPointDaoImpl

public SpatialItemPointDaoImpl()
Method Detail

handleCreateFromClusterSpatialItemPoint

protected SpatialItemPoint handleCreateFromClusterSpatialItemPoint(ClusterSpatialItemPoint clusterSpatialItemPoint)
Description copied from class: SpatialItemPointDaoBase
Performs the core logic for SpatialItemPointDaoBase.createFromClusterSpatialItemPoint(fr.ifremer.allegro.referential.spatial.generic.cluster.ClusterSpatialItemPoint)

Specified by:
handleCreateFromClusterSpatialItemPoint in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.createFromClusterSpatialItemPoint(fr.ifremer.allegro.referential.spatial.generic.cluster.ClusterSpatialItemPoint)

toRemoteSpatialItemPointFullVO

public void toRemoteSpatialItemPointFullVO(SpatialItemPoint source,
                                           RemoteSpatialItemPointFullVO target)
Description copied from interface: SpatialItemPointDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteSpatialItemPointFullVO(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).

Specified by:
toRemoteSpatialItemPointFullVO in interface SpatialItemPointDao
Overrides:
toRemoteSpatialItemPointFullVO in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.toRemoteSpatialItemPointFullVO(fr.ifremer.allegro.referential.spatial.SpatialItemPoint, fr.ifremer.allegro.referential.spatial.generic.vo.RemoteSpatialItemPointFullVO)

toRemoteSpatialItemPointFullVO

public RemoteSpatialItemPointFullVO toRemoteSpatialItemPointFullVO(SpatialItemPoint entity)
Description copied from interface: SpatialItemPointDao
Converts this DAO's entity to an object of type RemoteSpatialItemPointFullVO.

Specified by:
toRemoteSpatialItemPointFullVO in interface SpatialItemPointDao
Overrides:
toRemoteSpatialItemPointFullVO in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.toRemoteSpatialItemPointFullVO(fr.ifremer.allegro.referential.spatial.SpatialItemPoint)

remoteSpatialItemPointFullVOToEntity

public SpatialItemPoint remoteSpatialItemPointFullVOToEntity(RemoteSpatialItemPointFullVO remoteSpatialItemPointFullVO)
Description copied from interface: SpatialItemPointDao
Converts an instance of type RemoteSpatialItemPointFullVO to this DAO's entity.

See Also:
SpatialItemPointDao.remoteSpatialItemPointFullVOToEntity(fr.ifremer.allegro.referential.spatial.generic.vo.RemoteSpatialItemPointFullVO)

remoteSpatialItemPointFullVOToEntity

public void remoteSpatialItemPointFullVOToEntity(RemoteSpatialItemPointFullVO source,
                                                 SpatialItemPoint target,
                                                 boolean copyIfNull)
Description copied from interface: SpatialItemPointDao
Copies the fields of RemoteSpatialItemPointFullVO to the specified entity.

Specified by:
remoteSpatialItemPointFullVOToEntity in interface SpatialItemPointDao
Overrides:
remoteSpatialItemPointFullVOToEntity in class SpatialItemPointDaoBase
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.
See Also:
fr.ifremer.allegro.referential.spatial.SpatialItemPointDao#remoteSpatialItemPointFullVOToEntity(fr.ifremer.allegro.referential.spatial.generic.vo.RemoteSpatialItemPointFullVO, fr.ifremer.allegro.referential.spatial.SpatialItemPoint)

toRemoteSpatialItemPointNaturalId

public void toRemoteSpatialItemPointNaturalId(SpatialItemPoint source,
                                              RemoteSpatialItemPointNaturalId target)
Description copied from interface: SpatialItemPointDao
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteSpatialItemPointNaturalId(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).

Specified by:
toRemoteSpatialItemPointNaturalId in interface SpatialItemPointDao
Overrides:
toRemoteSpatialItemPointNaturalId in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.toRemoteSpatialItemPointNaturalId(fr.ifremer.allegro.referential.spatial.SpatialItemPoint, fr.ifremer.allegro.referential.spatial.generic.vo.RemoteSpatialItemPointNaturalId)

toRemoteSpatialItemPointNaturalId

public RemoteSpatialItemPointNaturalId toRemoteSpatialItemPointNaturalId(SpatialItemPoint entity)
Description copied from interface: SpatialItemPointDao
Converts this DAO's entity to an object of type RemoteSpatialItemPointNaturalId.

Specified by:
toRemoteSpatialItemPointNaturalId in interface SpatialItemPointDao
Overrides:
toRemoteSpatialItemPointNaturalId in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.toRemoteSpatialItemPointNaturalId(fr.ifremer.allegro.referential.spatial.SpatialItemPoint)

remoteSpatialItemPointNaturalIdToEntity

public SpatialItemPoint remoteSpatialItemPointNaturalIdToEntity(RemoteSpatialItemPointNaturalId remoteSpatialItemPointNaturalId)
Description copied from interface: SpatialItemPointDao
Converts an instance of type RemoteSpatialItemPointNaturalId to this DAO's entity.

See Also:
SpatialItemPointDao.remoteSpatialItemPointNaturalIdToEntity(fr.ifremer.allegro.referential.spatial.generic.vo.RemoteSpatialItemPointNaturalId)

remoteSpatialItemPointNaturalIdToEntity

public void remoteSpatialItemPointNaturalIdToEntity(RemoteSpatialItemPointNaturalId source,
                                                    SpatialItemPoint target,
                                                    boolean copyIfNull)
Description copied from interface: SpatialItemPointDao
Copies the fields of RemoteSpatialItemPointNaturalId to the specified entity.

Specified by:
remoteSpatialItemPointNaturalIdToEntity in interface SpatialItemPointDao
Overrides:
remoteSpatialItemPointNaturalIdToEntity in class SpatialItemPointDaoBase
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.
See Also:
fr.ifremer.allegro.referential.spatial.SpatialItemPointDao#remoteSpatialItemPointNaturalIdToEntity(fr.ifremer.allegro.referential.spatial.generic.vo.RemoteSpatialItemPointNaturalId, fr.ifremer.allegro.referential.spatial.SpatialItemPoint)

toClusterSpatialItemPoint

public void toClusterSpatialItemPoint(SpatialItemPoint source,
                                      ClusterSpatialItemPoint target)
Description copied from interface: SpatialItemPointDao
Copies the fields of the specified entity to the target value object. This method is similar to toClusterSpatialItemPoint(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).

Specified by:
toClusterSpatialItemPoint in interface SpatialItemPointDao
Overrides:
toClusterSpatialItemPoint in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.toClusterSpatialItemPoint(fr.ifremer.allegro.referential.spatial.SpatialItemPoint, fr.ifremer.allegro.referential.spatial.generic.cluster.ClusterSpatialItemPoint)

toClusterSpatialItemPoint

public ClusterSpatialItemPoint toClusterSpatialItemPoint(SpatialItemPoint entity)
Description copied from interface: SpatialItemPointDao
Converts this DAO's entity to an object of type ClusterSpatialItemPoint.

Specified by:
toClusterSpatialItemPoint in interface SpatialItemPointDao
Overrides:
toClusterSpatialItemPoint in class SpatialItemPointDaoBase
See Also:
SpatialItemPointDao.toClusterSpatialItemPoint(fr.ifremer.allegro.referential.spatial.SpatialItemPoint)

clusterSpatialItemPointToEntity

public SpatialItemPoint clusterSpatialItemPointToEntity(ClusterSpatialItemPoint clusterSpatialItemPoint)
Description copied from interface: SpatialItemPointDao
Converts an instance of type ClusterSpatialItemPoint to this DAO's entity.

See Also:
SpatialItemPointDao.clusterSpatialItemPointToEntity(fr.ifremer.allegro.referential.spatial.generic.cluster.ClusterSpatialItemPoint)

clusterSpatialItemPointToEntity

public void clusterSpatialItemPointToEntity(ClusterSpatialItemPoint source,
                                            SpatialItemPoint target,
                                            boolean copyIfNull)
Description copied from interface: SpatialItemPointDao
Copies the fields of ClusterSpatialItemPoint to the specified entity.

Specified by:
clusterSpatialItemPointToEntity in interface SpatialItemPointDao
Overrides:
clusterSpatialItemPointToEntity in class SpatialItemPointDaoBase
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.
See Also:
fr.ifremer.allegro.referential.spatial.SpatialItemPointDao#clusterSpatialItemPointToEntity(fr.ifremer.allegro.referential.spatial.generic.cluster.ClusterSpatialItemPoint, fr.ifremer.allegro.referential.spatial.SpatialItemPoint)


Copyright © 2008-2010 IFREMER. All Rights Reserved.