|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
StaffInfo database persister interface.
BbPersistenceManager,
StaffInfoDbLoader,
StaffInfo| Field Summary | |
static java.lang.String |
TYPE
Type used to obtain an instance of the class configured to provide the implementation for this interface. |
| Method Summary | |
void |
deleteById(Id id)
Deletes the StaffInfo identified by the given Id
value using a connection from the associated persistence manager's database
container. |
void |
deleteById(Id id,
java.sql.Connection con)
Deletes the StaffInfo identified by the given Id
value using the supplied connection. |
void |
persist(StaffInfo staffInfo)
Inserts or updates the supplied StaffInfo using a connection
from the associated persistence manager's database container. |
void |
persist(StaffInfo staffInfo,
java.sql.Connection con)
Inserts or updates the supplied StaffInfo using the supplied
connection. |
| Methods inherited from interface blackboard.persist.Persister |
getAppVersion, init |
| Field Detail |
public static final java.lang.String TYPE
BbPersistenceManager.getPersister(String)
| Method Detail |
public void persist(StaffInfo staffInfo)
throws ValidationException,
PersistenceException
StaffInfo using a connection
from the associated persistence manager's database container. If the
object's Id is set and is associated with the same container, then an
update is done, otherwise a new object is inserted.
ValidationException - if the object is not in a consistent state
to be persisted.
PersistenceException - if some other exception happens while
persisting the object.
public void persist(StaffInfo staffInfo,
java.sql.Connection con)
throws ValidationException,
PersistenceException
StaffInfo using the supplied
connection. The connection must be to the same database as is used by the
associated persistence manager. If the object's Id is set and is associated
with this persistence manager's same container, then an update is done,
otherwise a new object is inserted.
ValidationException - if the object is not in a consistent state
to be persisted.
PersistenceException - if some other exception happens while
persisting the object.
public void deleteById(Id id)
throws KeyNotFoundException,
PersistenceException
StaffInfo identified by the given Id
value using a connection from the associated persistence manager's database
container.
KeyNotFoundException - if an object with the given Id
value can not be found
PersistenceException - if some other exception happens during the
delete operation
public void deleteById(Id id,
java.sql.Connection con)
throws KeyNotFoundException,
PersistenceException
StaffInfo identified by the given Id
value using the supplied connection.
KeyNotFoundException - if an object with the given Id
value can not be found
PersistenceException - if some other exception happens during the
delete operation
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||