public abstract class ColumnVersionStrategy extends AbstractVersionStrategy
vers
Constructor and Description |
---|
ColumnVersionStrategy() |
Modifier and Type | Method and Description |
---|---|
boolean |
checkVersion(OpenJPAStateManager sm,
JDBCStore store,
boolean updateVersion)
Checks the version of the given state manager with the version
stored in memory.
|
protected int |
compare(Object[] a1,
Object[] a2)
Compare each element of the given arrays that must be of equal size.
|
protected int |
compare(Object v1,
Object v2)
Compare the two versions.
|
int |
compareVersion(Object v1,
Object v2) |
void |
delete(OpenJPAStateManager sm,
JDBCStore store,
RowManager rm)
Set the where values appropriately to delete the proper instance,
and set all relations on non-secondary tables as updates.
|
protected abstract int |
getJavaType()
Return the code from
JavaTypes for the version values this
strategy uses. |
protected int |
getJavaType(int i)
Return the code from
JavaTypes for the version value this given
column index uses. |
void |
insert(OpenJPAStateManager sm,
JDBCStore store,
RowManager rm)
Set values for the mapping into the proper rows.
|
Object |
load(OpenJPAStateManager sm,
JDBCStore store,
Result res)
Load data.
|
Object |
load(OpenJPAStateManager sm,
JDBCStore store,
Result res,
Joins joins)
Load data.
|
void |
map(boolean adapt)
Map the owning mapping using this strategy.
|
protected abstract Object |
nextVersion(Object version)
Return the next version given the current one, which may be null.
|
boolean |
select(Select sel,
ClassMapping mapping)
Select the data for this indicator.
|
void |
update(OpenJPAStateManager sm,
JDBCStore store,
RowManager rm)
Set values for the mapping into the proper rows.
|
afterLoad, getBulkUpdateValues, setVersion
customDelete, customInsert, customUpdate, getAlias, initialize, isCustomDelete, isCustomInsert, isCustomUpdate
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
customDelete, customInsert, customUpdate, getAlias, initialize, isCustomDelete, isCustomInsert, isCustomUpdate
protected abstract int getJavaType()
JavaTypes
for the version values this
strategy uses. This method is only used during mapping installation.protected int getJavaType(int i)
JavaTypes
for the version value this given
column index uses. Only used if the version strategy employs more than
one column.protected abstract Object nextVersion(Object version)
protected int compare(Object v1, Object v2)
Comparable
.Comparator.compare(T, T)
protected int compare(Object[] a1, Object[] a2)
public void map(boolean adapt)
Strategy
map
in interface Strategy
map
in class AbstractStrategy
adapt
- if true, use the owning mapping's raw mapping info
to set its ORM data; if false, ORM data will already be setpublic void insert(OpenJPAStateManager sm, JDBCStore store, RowManager rm) throws SQLException
Strategy
insert
in interface Strategy
insert
in class AbstractStrategy
SQLException
public void update(OpenJPAStateManager sm, JDBCStore store, RowManager rm) throws SQLException
Strategy
update
in interface Strategy
update
in class AbstractStrategy
SQLException
Strategy.insert(org.apache.openjpa.kernel.OpenJPAStateManager, org.apache.openjpa.jdbc.kernel.JDBCStore, org.apache.openjpa.jdbc.sql.RowManager)
public void delete(OpenJPAStateManager sm, JDBCStore store, RowManager rm) throws SQLException
Strategy
delete
in interface Strategy
delete
in class AbstractStrategy
SQLException
Strategy.insert(org.apache.openjpa.kernel.OpenJPAStateManager, org.apache.openjpa.jdbc.kernel.JDBCStore, org.apache.openjpa.jdbc.sql.RowManager)
public boolean select(Select sel, ClassMapping mapping)
VersionStrategy
select
in interface VersionStrategy
select
in class AbstractVersionStrategy
mapping
- the known base class being selected; this may
not be the base class in the inheritance hierarchypublic Object load(OpenJPAStateManager sm, JDBCStore store, Result res) throws SQLException
VersionStrategy
load
in interface VersionStrategy
load
in class AbstractVersionStrategy
SQLException
public Object load(OpenJPAStateManager sm, JDBCStore store, Result res, Joins joins) throws SQLException
VersionStrategy
load
in interface VersionStrategy
load
in class AbstractVersionStrategy
SQLException
public boolean checkVersion(OpenJPAStateManager sm, JDBCStore store, boolean updateVersion) throws SQLException
VersionStrategy
checkVersion
in interface VersionStrategy
checkVersion
in class AbstractVersionStrategy
SQLException
public int compareVersion(Object v1, Object v2)
compareVersion
in interface VersionStrategy
compareVersion
in class AbstractVersionStrategy
StoreManager.compareVersion(org.apache.openjpa.kernel.OpenJPAStateManager, java.lang.Object, java.lang.Object)
Copyright © 2006–2022 Apache Software Foundation. All rights reserved.