public interface ClassAccessIF
Modifier and Type | Method and Description |
---|---|
void |
create(ObjectAccessIF oaccess,
Object object)
INTERNAL: Creates the new object in the database.
|
void |
delete(ObjectAccessIF oaccess,
Object object)
INTERNAL: Deletes the object identity from the database.
|
boolean |
load(AccessRegistrarIF registrar,
IdentityIF identity)
INTERNAL: Loads the object identity from the database.
|
Object |
loadField(AccessRegistrarIF registrar,
IdentityIF identity,
int field)
INTERNAL: Loads the specified object field for the given identity
from the database.
|
Object |
loadFieldMultiple(AccessRegistrarIF registrar,
Collection<IdentityIF> identities,
IdentityIF current,
int field)
INTERNAL: Loads the specified object field for the given
identitys from the database.
|
void |
storeDirty(ObjectAccessIF oaccess,
Object object)
INTERNAL: Stores object fields that are dirty in the
database.
|
boolean load(AccessRegistrarIF registrar, IdentityIF identity) throws Exception
Exception
Object loadField(AccessRegistrarIF registrar, IdentityIF identity, int field) throws Exception
Exception
Object loadFieldMultiple(AccessRegistrarIF registrar, Collection<IdentityIF> identities, IdentityIF current, int field) throws Exception
Exception
void create(ObjectAccessIF oaccess, Object object) throws Exception
Exception
void delete(ObjectAccessIF oaccess, Object object) throws Exception
Exception
void storeDirty(ObjectAccessIF oaccess, Object object) throws Exception
Exception