public abstract class PersonSessionDaoBase extends HibernateDaoSupport implements PersonSessionDao
Base Spring DAO Class: is able to create, update, remove, load, and find
objects of type PersonSession
.
PersonSession
TRANSFORM_NONE
Constructor and Description |
---|
PersonSessionDaoBase() |
Modifier and Type | Method and Description |
---|---|
protected int |
calculateFirstResult(int pageNumber,
int pageSize)
firstResult = (pageNumber - 1) * pageSize
|
Collection<PersonSession> |
create(Collection<PersonSession> entities)
Creates a new instance of PersonSession and adds
from the passed in
entities collection |
Collection<?> |
create(int transform,
Collection<PersonSession> entities)
Does the same thing as
PersonSessionDao.create(PersonSession) with an
additional flag called transform . |
Object |
create(int transform,
Person person)
Does the same thing as
#create() with an
additional flag called transform . |
Object |
create(int transform,
PersonSession personSession)
Does the same thing as
PersonSessionDao.create(PersonSession) with an
additional flag called transform . |
Object |
create(int transform,
Timestamp updateDate)
Does the same thing as
PersonSessionDao.create(Timestamp) with an
additional flag called transform . |
PersonSession |
create(Person person)
Creates a new
PersonSession
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
PersonSession |
create(PersonSession personSession)
Creates an instance of PersonSession and adds it to the persistent store.
|
PersonSession |
create(Timestamp updateDate)
Creates a new
PersonSession
instance from all attributes and adds it to
the persistent store. |
PersonSession |
get(Integer id)
Gets an instance of PersonSession from the persistent store.
|
Object |
get(int transform,
Integer id)
Does the same thing as
PersonSessionDao.get(Integer) with an
additional flag called transform . |
protected PaginationResult |
getPaginationResult(Query queryObject,
int transform,
int pageNumber,
int pageSize)
Executes and returns the given Hibernate queryObject as a
PaginationResult instance. |
protected Principal |
getPrincipal()
Gets the current
principal if one has been set,
otherwise returns null . |
PersonSession |
load(Integer id)
Loads an instance of PersonSession from the persistent store.
|
Object |
load(int transform,
Integer id)
Does the same thing as
PersonSessionDao.load(Integer) with an
additional flag called transform . |
Collection<PersonSession> |
loadAll()
Loads all entities of type
PersonSession . |
Collection<?> |
loadAll(int transform)
Does the same thing as
PersonSessionDao.loadAll() with an
additional flag called transform . |
Collection<?> |
loadAll(int pageNumber,
int pageSize)
Does the same thing as
PersonSessionDao.loadAll() with an
additional two arguments called pageNumber and pageSize . |
Collection<?> |
loadAll(int transform,
int pageNumber,
int pageSize)
Does the same thing as
PersonSessionDao.loadAll(int) with an
additional two arguments called pageNumber and pageSize . |
void |
remove(Collection<PersonSession> entities)
Removes all entities in the given
entities collection. |
void |
remove(Integer id)
Removes the instance of PersonSession having the given
identifier from the persistent store. |
void |
remove(PersonSession personSession)
Removes the instance of PersonSession from the persistent store.
|
PaginationResult |
search(int transform,
int pageNumber,
int pageSize,
Search search)
Does the same thing as
PersonSessionDao.search(int, Search) but with an
additional two flags called pageNumber and pageSize . |
PaginationResult |
search(int pageNumber,
int pageSize,
Search search)
Does the same thing as
PersonSessionDao.search(Search) but with an
additional two flags called pageNumber and pageSize . |
Set<?> |
search(int transform,
Search search)
Does the same thing as
PersonSessionDao.search(Search) but with an
additional flag called transform . |
Set<PersonSession> |
search(Search search)
Performs a search using the parameters specified in the given
search object. |
void |
toEntities(Collection<?> results)
Transforms the given results to a collection of
PersonSession
instances (this is useful when the returned results contains a row of data and you want just entities only). |
protected PersonSession |
toEntity(Object[] row) |
void |
transformEntities(int transform,
Collection<?> entities)
Transforms a collection of entities using the
PersonSessionDao.transformEntity(int,PersonSession)
method. |
Object |
transformEntity(int transform,
PersonSession 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 PersonSessionDao , please note
that the PersonSessionDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
void |
update(Collection<PersonSession> entities)
Updates all instances in the
entities collection in the persistent store. |
void |
update(PersonSession personSession)
Updates the
personSession instance in the persistent store. |
convertDatabase2UI, convertUI2DatabaseMandatoryDate, createQuery, dateOfYearWithOneMiliSecond, dateOfYearWithOneMiliSecondInMili, dateWithNoMiliSecond, dateWithNoSecondAndMiliSecond, dateWithNoSecondAndOneMiliSecond, dateWithNoTime, dateWithOneMiliSecond, deleteAll, get, getSession, getSession, getSessionFactory, load, newCreateDate, queryIterator, queryIteratorTyped, queryIteratorWithPage, queryList, queryListTyped, queryUnique, queryUniqueTyped, queryUpdate, setQueryParams, setSessionFactory
public PersonSessionDaoBase()
public Object get(int transform, Integer id)
Does the same thing as PersonSessionDao.get(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.
get
in interface PersonSessionDao
transform
- flag to determine transformation type.id
- the identifier of the entity to get.public PersonSession get(Integer id)
get
in interface PersonSessionDao
public Object load(int transform, Integer id)
Does the same thing as PersonSessionDao.load(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 PersonSessionDao
transform
- flag to determine transformation type.id
- the identifier of the entity to load.public PersonSession load(Integer id)
load
in interface PersonSessionDao
public Collection<PersonSession> loadAll()
PersonSession
.loadAll
in interface PersonSessionDao
public Collection<?> loadAll(int transform)
Does the same thing as PersonSessionDao.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 PersonSessionDao
transform
- the flag indicating what transformation to use.public Collection<?> loadAll(int pageNumber, int pageSize)
Does the same thing as PersonSessionDao.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 PersonSessionDao
pageNumber
- the page number to retrieve when paging results.pageSize
- the size of the page to retrieve when paging results.public Collection<?> loadAll(int transform, int pageNumber, int pageSize)
Does the same thing as PersonSessionDao.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 PersonSessionDao
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.protected int calculateFirstResult(int pageNumber, int pageSize)
pageNumber
- pageSize
- public PersonSession create(PersonSession personSession)
create
in interface PersonSessionDao
public Object create(int transform, PersonSession personSession)
Does the same thing as PersonSessionDao.create(PersonSession)
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 PersonSessionDao
public Collection<PersonSession> create(Collection<PersonSession> entities)
entities
collectioncreate
in interface PersonSessionDao
entities
- the collection of PersonSession
instances to create.public Collection<?> create(int transform, Collection<PersonSession> entities)
Does the same thing as PersonSessionDao.create(PersonSession)
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 PersonSessionDao
public PersonSession create(Timestamp updateDate)
Creates a new PersonSession
instance from all attributes and adds it to
the persistent store.
create
in interface PersonSessionDao
updateDate
- Date de dernière modification en base centrale : utilisé pour la synchronisation entre base locale
et base distantepublic Object create(int transform, Timestamp updateDate)
Does the same thing as PersonSessionDao.create(Timestamp)
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 PersonSessionDao
updateDate
- Date de dernière modification en base centrale : utilisé pour la synchronisation entre base locale
et base distantepublic PersonSession create(Person person)
Creates a new PersonSession
instance from only required properties (attributes
and association ends) and adds it to the persistent store.
create
in interface PersonSessionDao
public Object create(int transform, Person person)
Does the same thing as #create()
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 PersonSessionDao
transform
- flag to determine transformation type.public void update(PersonSession personSession)
personSession
instance in the persistent store.update
in interface PersonSessionDao
public void update(Collection<PersonSession> entities)
entities
collection in the persistent store.update
in interface PersonSessionDao
public void remove(PersonSession personSession)
remove
in interface PersonSessionDao
public void remove(Integer id)
identifier
from the persistent store.remove
in interface PersonSessionDao
public void remove(Collection<PersonSession> entities)
entities
collection.remove
in interface PersonSessionDao
public Object transformEntity(int transform, PersonSession entity)
transform
flag is set to one of the constants defined in PersonSessionDao
, please note
that the PersonSessionDao.TRANSFORM_NONE
constant denotes no transformation, so the entity itself
will be returned.
If the integer argument value is unknown PersonSessionDao.TRANSFORM_NONE
is assumed.transformEntity
in interface PersonSessionDao
transform
- one of the constants declared in PersonSessionDao
entity
- an entity that was foundPersonSessionDao.transformEntity(int, PersonSession)
public void transformEntities(int transform, Collection<?> entities)
PersonSessionDao.transformEntity(int,PersonSession)
method. This method does not instantiate a new collection.
This method is to be used internally only.
transformEntities
in interface PersonSessionDao
transform
- one of the constants declared in fr.ifremer.adagio.core.dao.administration.user.PersonSessionDao
entities
- the collection of entities to transformPersonSessionDao.transformEntity(int,PersonSession)
public void toEntities(Collection<?> results)
PersonSessionDao
PersonSession
instances (this is useful when the returned results contains a row of data and you want just entities only).toEntities
in interface PersonSessionDao
results
- the query results.PersonSessionDao.toEntities(Collection)
protected PersonSession toEntity(Object[] row)
row
- protected Principal getPrincipal()
principal
if one has been set,
otherwise returns null
.public PaginationResult search(int transform, int pageNumber, int pageSize, Search search)
PersonSessionDao.search(int, Search)
but with an
additional two flags called pageNumber
and pageSize
. These flags allow you to
limit your data to a specified page number and size.search
in interface PersonSessionDao
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.public PaginationResult search(int pageNumber, int pageSize, Search search)
PersonSessionDao.search(Search)
but with an
additional two flags called pageNumber
and pageSize
. These flags allow you to
limit your data to a specified page number and size.search
in interface PersonSessionDao
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.public Set<?> search(int transform, Search search)
PersonSessionDao.search(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 PersonSessionDao
transform
- the transformation flag.search
- the search object which provides the search parameters and pagination specification.public Set<PersonSession> search(Search search)
search
object.search
in interface PersonSessionDao
search
- the search object which provides the search parameters and pagination specification.protected PaginationResult getPaginationResult(Query queryObject, int transform, int pageNumber, int pageSize)
PaginationResult
instance.queryObject
- transform
- pageNumber
- pageSize
- Copyright © 2012–2014 IFREMER. All rights reserved.