| java.lang.Object org.jpox.metadata.PersistenceFlags
PersistenceFlags | public class PersistenceFlags (Code) | | Series of flag settings used in the persistence process.
Copied from javax.jdo.spi.PersistenceCapable for when we don't need jdo.jar present.
version: $Revision: 1.1 $ |
Field Summary | |
final static byte | CHECK_READ If jpoxFieldFlags for a field includes CHECK_READ, then the field has been enhanced to call the
StateManager on read if the jdoFlags setting is not READ_OK or READ_WRITE_OK. | final static byte | CHECK_WRITE If jpoxFieldFlags for a field includes CHECK_WRITE, then the field has been enhanced to call the
StateManager on write if the jpoxFlags setting is not READ_WRITE_OK;. | final static byte | LOAD_REQUIRED If jpoxFieldFlags is set to LOAD_REQUIRED, then the fields in the default fetch group
cannot be accessed for read or write without notifying the StateManager. | final static byte | MEDIATE_READ If jpoxFieldFlags for a field includes MEDIATE_READ, then the field has been enhanced to always
call the StateManager on all reads. | final static byte | MEDIATE_WRITE If jpoxFieldFlags for a field includes MEDIATE_WRITE, then the field has been enhanced to always
call the StateManager on all writes. | final static byte | READ_OK If jpoxFieldFlags is set to READ_OK, then the fields in the default fetch group
can be accessed for read without notifying the StateManager. | final static byte | READ_WRITE_OK If jpoxFieldFlags is set to READ_WRITE_OK, then the fields in the default fetch group
can be accessed for read or write without notifying the StateManager. | final static byte | SERIALIZABLE If jpoxFieldFlags for a field includes SERIALIZABLE, then the field is not declared as TRANSIENT. |
CHECK_READ | final static byte CHECK_READ(Code) | | If jpoxFieldFlags for a field includes CHECK_READ, then the field has been enhanced to call the
StateManager on read if the jdoFlags setting is not READ_OK or READ_WRITE_OK.
|
CHECK_WRITE | final static byte CHECK_WRITE(Code) | | If jpoxFieldFlags for a field includes CHECK_WRITE, then the field has been enhanced to call the
StateManager on write if the jpoxFlags setting is not READ_WRITE_OK;.
|
LOAD_REQUIRED | final static byte LOAD_REQUIRED(Code) | | If jpoxFieldFlags is set to LOAD_REQUIRED, then the fields in the default fetch group
cannot be accessed for read or write without notifying the StateManager.
|
MEDIATE_READ | final static byte MEDIATE_READ(Code) | | If jpoxFieldFlags for a field includes MEDIATE_READ, then the field has been enhanced to always
call the StateManager on all reads.
|
MEDIATE_WRITE | final static byte MEDIATE_WRITE(Code) | | If jpoxFieldFlags for a field includes MEDIATE_WRITE, then the field has been enhanced to always
call the StateManager on all writes.
|
READ_OK | final static byte READ_OK(Code) | | If jpoxFieldFlags is set to READ_OK, then the fields in the default fetch group
can be accessed for read without notifying the StateManager.
|
READ_WRITE_OK | final static byte READ_WRITE_OK(Code) | | If jpoxFieldFlags is set to READ_WRITE_OK, then the fields in the default fetch group
can be accessed for read or write without notifying the StateManager.
|
SERIALIZABLE | final static byte SERIALIZABLE(Code) | | If jpoxFieldFlags for a field includes SERIALIZABLE, then the field is not declared as TRANSIENT.
|
|
|