Package | Description |
---|---|
fr.ifremer.adagio.core.dao.data.history | |
fr.ifremer.adagio.core.dao.referential |
Modifier and Type | Method and Description |
---|---|
ProcessingStatus |
ProcessingHistory.getProcessingStatus()
L'etat du traitement.
|
Modifier and Type | Method and Description |
---|---|
Object |
ProcessingHistoryDaoBase.create(int transform,
String name,
Date processingDate,
ProcessingStatus processingStatus,
ProcessingType processingType,
Timestamp updateDate)
Does the same thing as
#create(String, Date, Timestamp) with an
additional flag called transform . |
Object |
ProcessingHistoryDao.create(int transform,
String name,
Date processingDate,
ProcessingStatus processingStatus,
ProcessingType processingType,
Timestamp updateDate)
Does the same thing as
#create(String, Date, Timestamp) with an
additional flag called transform . |
ProcessingHistory |
ProcessingHistoryDaoBase.create(String name,
Date processingDate,
ProcessingStatus processingStatus,
ProcessingType processingType,
Timestamp updateDate)
Creates a new
ProcessingHistory
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
ProcessingHistory |
ProcessingHistoryDao.create(String name,
Date processingDate,
ProcessingStatus processingStatus,
ProcessingType processingType,
Timestamp updateDate)
Creates a new
ProcessingHistory
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
static ProcessingHistory |
ProcessingHistory.Factory.newInstance(String name,
Date processingDate,
String dataTransfertType,
Date dataTransfertDate,
String dataTransfertAddress,
String configuration,
String xmlConfiguration,
Timestamp updateDate,
Collection<InsertedItemHistory> insertedItemHistories,
ProcessingType processingType,
ProcessingStatus processingStatus,
Collection<UpdatedItemHistory> updatedItemHistories,
Collection<DeletedItemHistory> deletedItemHistories)
Constructs a new instance of
ProcessingHistory , taking all possible properties
(except the identifier(s))as arguments. |
static ProcessingHistory |
ProcessingHistory.Factory.newInstance(String name,
Date processingDate,
Timestamp updateDate,
ProcessingType processingType,
ProcessingStatus processingStatus)
Constructs a new instance of
ProcessingHistory , taking all required and/or
read-only properties as arguments, except for identifiers. |
void |
ProcessingHistory.setProcessingStatus(ProcessingStatus processingStatusIn)
L'etat du traitement.
|
Modifier and Type | Class and Description |
---|---|
class |
ProcessingStatusImpl |
Modifier and Type | Method and Description |
---|---|
ProcessingStatus |
ProcessingStatusDaoBase.create(ProcessingStatus processingStatus)
Creates an instance of ProcessingStatus and adds it to the persistent store.
|
ProcessingStatus |
ProcessingStatusDao.create(ProcessingStatus processingStatus)
Creates an instance of ProcessingStatus and adds it to the persistent store.
|
ProcessingStatus |
ProcessingStatusDaoBase.create(String name,
Status status,
Timestamp updateDate)
Creates a new
ProcessingStatus
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
ProcessingStatus |
ProcessingStatusDao.create(String name,
Status status,
Timestamp updateDate)
Creates a new
ProcessingStatus
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
ProcessingStatus |
ProcessingStatusDaoBase.create(String code,
String name,
Timestamp updateDate,
String comments)
Creates a new
ProcessingStatus
instance from all attributes and adds it to
the persistent store. |
ProcessingStatus |
ProcessingStatusDao.create(String code,
String name,
Timestamp updateDate,
String comments)
Creates a new
ProcessingStatus
instance from all attributes and adds it to
the persistent store. |
ProcessingStatus |
ProcessingStatusDaoBase.get(String code)
Gets an instance of ProcessingStatus from the persistent store.
|
ProcessingStatus |
ProcessingStatusDao.get(String code)
Gets an instance of ProcessingStatus from the persistent store.
|
ProcessingStatus |
ProcessingStatusDaoBase.load(String code)
Loads an instance of ProcessingStatus from the persistent store.
|
ProcessingStatus |
ProcessingStatusDao.load(String code)
Loads an instance of ProcessingStatus from the persistent store.
|
static ProcessingStatus |
ProcessingStatus.Factory.newInstance()
Constructs a new instance of
ProcessingStatus . |
static ProcessingStatus |
ProcessingStatus.Factory.newInstance(String name,
Timestamp updateDate,
Status status)
Constructs a new instance of
ProcessingStatus , taking all required and/or
read-only properties as arguments, except for identifiers. |
static ProcessingStatus |
ProcessingStatus.Factory.newInstance(String name,
Timestamp updateDate,
String comments,
Status status,
Collection<ProcessingHistory> processingHistories)
Constructs a new instance of
ProcessingStatus , taking all possible properties
(except the identifier(s))as arguments. |
protected ProcessingStatus |
ProcessingStatusDaoBase.toEntity(Object[] row) |
Modifier and Type | Method and Description |
---|---|
Collection<ProcessingStatus> |
ProcessingStatusDaoBase.create(Collection<ProcessingStatus> entities)
Creates a new instance of ProcessingStatus and adds
from the passed in
entities collection |
Collection<ProcessingStatus> |
ProcessingStatusDao.create(Collection<ProcessingStatus> entities)
Creates a new instance of ProcessingStatus and adds
from the passed in
entities collection |
Collection<ProcessingStatus> |
ProcessingStatusDaoBase.loadAll()
Loads all entities of type
ProcessingStatus . |
Collection<ProcessingStatus> |
ProcessingStatusDao.loadAll()
Loads all entities of type
ProcessingStatus . |
Set<ProcessingStatus> |
ProcessingStatusDaoBase.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Set<ProcessingStatus> |
ProcessingStatusDao.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Modifier and Type | Method and Description |
---|---|
int |
ProcessingStatus.compareTo(ProcessingStatus o) |
Object |
ProcessingStatusDaoBase.create(int transform,
ProcessingStatus processingStatus)
Does the same thing as
ProcessingStatusDao.create(ProcessingStatus) with an
additional flag called transform . |
Object |
ProcessingStatusDao.create(int transform,
ProcessingStatus processingStatus)
Does the same thing as
ProcessingStatusDao.create(ProcessingStatus) with an
additional flag called transform . |
ProcessingStatus |
ProcessingStatusDaoBase.create(ProcessingStatus processingStatus)
Creates an instance of ProcessingStatus and adds it to the persistent store.
|
ProcessingStatus |
ProcessingStatusDao.create(ProcessingStatus processingStatus)
Creates an instance of ProcessingStatus and adds it to the persistent store.
|
void |
ProcessingStatusDaoBase.remove(ProcessingStatus processingStatus)
Removes the instance of ProcessingStatus from the persistent store.
|
void |
ProcessingStatusDao.remove(ProcessingStatus processingStatus)
Removes the instance of ProcessingStatus from the persistent store.
|
Object |
ProcessingStatusDaoBase.transformEntity(int transform,
ProcessingStatus 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 ProcessingStatusDao , please note
that the ProcessingStatusDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
Object |
ProcessingStatusDao.transformEntity(int transform,
ProcessingStatus 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.adagio.core.dao.referential.ProcessingStatusDao , please note
that the ProcessingStatusDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
void |
ProcessingStatusDaoBase.update(ProcessingStatus processingStatus)
Updates the
processingStatus instance in the persistent store. |
void |
ProcessingStatusDao.update(ProcessingStatus processingStatus)
Updates the
processingStatus instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<ProcessingStatus> |
ProcessingStatusDaoBase.create(Collection<ProcessingStatus> entities)
Creates a new instance of ProcessingStatus and adds
from the passed in
entities collection |
Collection<ProcessingStatus> |
ProcessingStatusDao.create(Collection<ProcessingStatus> entities)
Creates a new instance of ProcessingStatus and adds
from the passed in
entities collection |
Collection<?> |
ProcessingStatusDaoBase.create(int transform,
Collection<ProcessingStatus> entities)
Does the same thing as
ProcessingStatusDao.create(ProcessingStatus) with an
additional flag called transform . |
Collection<?> |
ProcessingStatusDao.create(int transform,
Collection<ProcessingStatus> entities)
Does the same thing as
ProcessingStatusDao.create(ProcessingStatus) with an
additional flag called transform . |
void |
ProcessingStatusDaoBase.remove(Collection<ProcessingStatus> entities)
Removes all entities in the given
entities collection. |
void |
ProcessingStatusDao.remove(Collection<ProcessingStatus> entities)
Removes all entities in the given
entities collection. |
void |
ProcessingStatusDaoBase.update(Collection<ProcessingStatus> entities)
Updates all instances in the
entities collection in the persistent store. |
void |
ProcessingStatusDao.update(Collection<ProcessingStatus> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2012–2014 IFREMER. All rights reserved.