klass.model.meta.domain.VariableReferenceAbstract Maven / Gradle / Ivy
The newest version!
package klass.model.meta.domain;
import java.math.BigDecimal;
import java.sql.Timestamp;
import java.util.*;
import java.io.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.gs.fw.common.mithra.*;
import com.gs.fw.common.mithra.attribute.*;
import com.gs.fw.common.mithra.util.*;
import com.gs.fw.common.mithra.notification.*;
import com.gs.fw.common.mithra.notification.listener.*;
import com.gs.fw.common.mithra.list.cursor.Cursor;
import com.gs.fw.common.mithra.bulkloader.*;
import com.gs.fw.common.mithra.*;
import com.gs.fw.common.mithra.behavior.*;
import com.gs.fw.common.mithra.cache.Cache;
import com.gs.fw.common.mithra.extractor.*;
import com.gs.fw.common.mithra.finder.*;
import com.gs.fw.common.mithra.list.*;
import com.gs.fw.common.mithra.behavior.state.PersistenceState;
import com.gs.fw.common.mithra.attribute.update.*;
import com.gs.fw.common.mithra.transaction.MithraObjectPersister;
import java.util.Arrays;
import java.util.HashSet;
/**
* This file was automatically generated using Mithra 18.0.0. Please do not modify it.
* Add custom logic to its subclass instead.
*/
// Generated from templates/transactional/Abstract.jsp
public abstract class VariableReferenceAbstract extends com.gs.fw.common.mithra.superclassimpl.MithraTransactionalObjectImpl
{
private static byte MEMORY_STATE = PersistenceState.IN_MEMORY;
private static byte PERSISTED_STATE = PersistenceState.PERSISTED;
private static final Logger logger = LoggerFactory.getLogger(VariableReference.class.getName());
private static final RelationshipHashStrategy forparameter = new ParameterRhs();
private static final RelationshipHashStrategy forexpressionValueSuperClass = new ExpressionValueSuperClassRhs();
private static final class ParameterRhs implements RelationshipHashStrategy
{
public boolean equalsForRelationship(Object _srcObject, Object _srcData, Object _targetData, Timestamp _asOfDate0, Timestamp _asOfDate1)
{
VariableReferenceData _castedSrcData = (VariableReferenceData) _srcData;
ParameterData _castedTargetData = (ParameterData) _targetData;
if (_castedSrcData.getParameterId() == _castedTargetData.getId())
{
return true;
}
return false;
}
public int computeHashCodeFromRelated(Object _srcObject, Object _srcData)
{
VariableReferenceData _castedSrcData = (VariableReferenceData) _srcData;
return HashUtil.hash(_castedSrcData.getParameterId());
}
public int computeOffHeapHashCodeFromRelated(Object _srcObject, Object _srcData)
{
return computeHashCodeFromRelated(_srcObject, _srcData);
}
}
private static final class ExpressionValueSuperClassRhs implements RelationshipHashStrategy
{
public boolean equalsForRelationship(Object _srcObject, Object _srcData, Object _targetData, Timestamp _asOfDate0, Timestamp _asOfDate1)
{
VariableReferenceData _castedSrcData = (VariableReferenceData) _srcData;
ExpressionValueData _castedTargetData = (ExpressionValueData) _targetData;
if (_castedSrcData.getId() == _castedTargetData.getId())
{
return true;
}
return false;
}
public int computeHashCodeFromRelated(Object _srcObject, Object _srcData)
{
VariableReferenceData _castedSrcData = (VariableReferenceData) _srcData;
return HashUtil.hash(_castedSrcData.getId());
}
public int computeOffHeapHashCodeFromRelated(Object _srcObject, Object _srcData)
{
return computeHashCodeFromRelated(_srcObject, _srcData);
}
}
public VariableReferenceAbstract()
{
this.persistenceState = MEMORY_STATE;
}
public VariableReference getDetachedCopy() throws MithraBusinessException
{
return (VariableReference) super.getDetachedCopy();
}
public VariableReference getNonPersistentCopy() throws MithraBusinessException
{
VariableReference result = (VariableReference) super.getNonPersistentCopy();
result.persistenceState = MEMORY_STATE;
return result;
}
public VariableReference copyDetachedValuesToOriginalOrInsertIfNew()
{
return (VariableReference) this.zCopyDetachedValuesToOriginalOrInsertIfNew();
}
public VariableReference zFindOriginal()
{
VariableReferenceData data = (VariableReferenceData) this.currentData;
Operation op;
op = VariableReferenceFinder.id().eq(data.getId());
return VariableReferenceFinder.findOne(op);
}
public boolean isModifiedSinceDetachmentByDependentRelationships()
{
if(this.isModifiedSinceDetachment()) return true;
return false;
}
private Logger getLogger()
{
return logger;
}
public MithraDataObject zAllocateData()
{
return new VariableReferenceData();
}
protected void zSetFromVariableReferenceData( VariableReferenceData data )
{
super.zSetData(data);
this.persistenceState = PERSISTED_STATE;
}
public void setFromVariableReferenceData( VariableReferenceData data )
{
super.zSetData(data);
}
public void zWriteDataClassName(ObjectOutput out) throws IOException
{
}
public final boolean isIdNull()
{
return ((VariableReferenceData) this.zSynchronizedGetData()).isIdNull();
}
public final long getId()
{
VariableReferenceData data = (VariableReferenceData) this.zSynchronizedGetData();
return data.getId();
}
public void setId(long newValue)
{
zSetLong(VariableReferenceFinder.id(), newValue, true, false ,false);
}
public boolean isParameterIdNull()
{
return ((VariableReferenceData) this.zSynchronizedGetData()).isParameterIdNull();
}
public long getParameterId()
{
VariableReferenceData data = (VariableReferenceData) this.zSynchronizedGetData();
return data.getParameterId();
}
public void setParameterId(long newValue)
{
zSetLong(VariableReferenceFinder.parameterId(), newValue, false, false ,false);
}
protected void issuePrimitiveNullSetters(TransactionalBehavior behavior, MithraDataObject data)
{
}
public void zPersistDetachedRelationships(MithraDataObject _data)
{
VariableReferenceData _newData = (VariableReferenceData) _data;
}
public void zSetTxDetachedDeleted()
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
if (_behavior.isDetached() && _behavior.isDeleted()) return;
VariableReferenceData _newData = (VariableReferenceData) _behavior.getCurrentDataForRead(this);
this.zSetTxPersistenceState(PersistenceState.DETACHED_DELETED);
}
public void zSetNonTxDetachedDeleted()
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
VariableReferenceData _newData = (VariableReferenceData) _behavior.getCurrentDataForRead(this);
this.zSetNonTxPersistenceState(PersistenceState.DETACHED_DELETED);
}
/**
* Relationship Expression:
this.parameterId = Parameter.id
* @see Parameter#getVariableReferences() reverse relationship Parameter.getVariableReferences()
* @return The parameter
*/
public Parameter getParameter()
{
Parameter _result = null;
Operation _op = null;
TransactionalBehavior _behavior = zGetTransactionalBehaviorForReadWithWaitIfNecessary();
VariableReferenceData _data = (VariableReferenceData) _behavior.getCurrentDataForRead(this);
MithraObjectPortal _portal = null;
if (_behavior.isPersisted())
{
{
_portal = ParameterFinder.getMithraObjectPortal();
Object _related = _portal.getAsOneFromCache(this, _data, forparameter, null, null);
if (!(_related instanceof NulledRelation)) _result = (Parameter) _related;
if (_related == null)
{
_op = ParameterFinder.id().eq(_data.getParameterId());
}
}
}
else if (_behavior.isDetached())
{
{
{
Operation detachedOp = ParameterFinder.id().eq(_data.getParameterId());
_result = ParameterFinder.zFindOneForRelationship(detachedOp);
}
}
}
else if (_behavior.isInMemory())
{
_result = (Parameter) _data.getParameter();
if (_result == null)
{
{
_op = ParameterFinder.id().eq(_data.getParameterId());
}
}
}
if (_op != null)
{
_result = ParameterFinder.zFindOneForRelationship(_op);
}
return _result;
}
public void setParameter(Parameter parameter)
{
Parameter _parameter = (Parameter) parameter;
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
VariableReferenceData _data = (VariableReferenceData) _behavior.getCurrentDataForWrite(this);
if (_behavior.isInMemory())
{
_data.setParameter(_parameter);
if (_parameter == null)
{
this.setParameterId(0);
}
else
{
this.setParameterId(_parameter.getId());
}
}
else if (_behavior.isPersisted())
{
_behavior.clearTempTransaction(this);
if (_parameter == null)
{
this.setParameterId(0);
}
else
{
this.setParameterId(
_parameter.getId());
}
}
else throw new RuntimeException("not implemented");
}
/**
* Relationship Expression:
ExpressionValue.id = this.id
* @see ExpressionValue#getVariableReferenceSubClass() reverse relationship ExpressionValue.getVariableReferenceSubClass()
* @return The expression value super class
*/
public ExpressionValue getExpressionValueSuperClass()
{
ExpressionValue _result = null;
Operation _op = null;
TransactionalBehavior _behavior = zGetTransactionalBehaviorForReadWithWaitIfNecessary();
VariableReferenceData _data = (VariableReferenceData) _behavior.getCurrentDataForRead(this);
MithraObjectPortal _portal = null;
if (_behavior.isPersisted())
{
{
_portal = ExpressionValueFinder.getMithraObjectPortal();
Object _related = _portal.getAsOneFromCache(this, _data, forexpressionValueSuperClass, null, null);
if (!(_related instanceof NulledRelation)) _result = (ExpressionValue) _related;
if (_related == null)
{
_op = ExpressionValueFinder.id().eq(_data.getId());
}
}
}
else if (_behavior.isDetached())
{
if (_data.getExpressionValueSuperClass() instanceof NulledRelation)
{
return null;
}
_result = (ExpressionValue) _data.getExpressionValueSuperClass();
if (_result == null)
{
{
Operation detachedOp = ExpressionValueFinder.id().eq(_data.getId());
_result = ExpressionValueFinder.zFindOneForRelationship(detachedOp);
if(_result != null)
{
_result = _result.getDetachedCopy();
}
}
_data = (VariableReferenceData) _behavior.getCurrentDataForWrite(this);
_data.setExpressionValueSuperClass(_result);
}
}
else if (_behavior.isInMemory())
{
_result = (ExpressionValue) _data.getExpressionValueSuperClass();
if (_result == null)
{
{
_op = ExpressionValueFinder.id().eq(_data.getId());
}
}
}
if (_op != null)
{
_result = ExpressionValueFinder.zFindOneForRelationship(_op);
}
return _result;
}
public void setExpressionValueSuperClass(ExpressionValue expressionValueSuperClass)
{
((ExpressionValue)expressionValueSuperClass).setVariableReferenceSubClass((VariableReference)this);
}
public void zSetParentContainerexpressionValueSuperClass(ExpressionValueAbstract parent)
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
VariableReferenceData _data = (VariableReferenceData) _behavior.getCurrentDataForWrite(this);
_behavior.clearTempTransaction(this);
if (_behavior.isInMemory())
{
_data.setExpressionValueSuperClass(parent);
}
}
protected void cascadeInsertImpl() throws MithraBusinessException
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
_behavior.insert(this);
}
@Override
public Map< RelatedFinder, StatisticCounter > zAddNavigatedRelationshipsStats(RelatedFinder finder, Map< RelatedFinder, StatisticCounter > navigationStats)
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
_behavior.addNavigatedRelationshipsStats(this, finder, navigationStats);
return navigationStats;
}
@Override
public Map< RelatedFinder, StatisticCounter > zAddNavigatedRelationshipsStatsForUpdate(RelatedFinder parentFinderGeneric, Map< RelatedFinder, StatisticCounter > navigationStats)
{
return navigationStats;
}
@Override
public Map< RelatedFinder, StatisticCounter > zAddNavigatedRelationshipsStatsForDelete(RelatedFinder parentFinder, Map< RelatedFinder, StatisticCounter > navigationStats)
{
return navigationStats;
}
@Override
public VariableReference zCascadeCopyThenInsert() throws MithraBusinessException
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
VariableReference original = (VariableReference) _behavior.copyThenInsert(this);
return original;
}
protected void cascadeDeleteImpl() throws MithraBusinessException
{
this.delete();
}
public Cache zGetCache()
{
return VariableReferenceFinder.getMithraObjectPortal().getCache();
}
public MithraObjectPortal zGetPortal()
{
return VariableReferenceFinder.getMithraObjectPortal();
}
public VariableReference getOriginalPersistentObject()
{
return this.zFindOriginal();
}
protected boolean issueUpdatesForNonPrimaryKeys(TransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
boolean changed = false;
changed |= zUpdateLong(behavior, data, newData, VariableReferenceFinder.parameterId(), false);
return changed;
}
protected boolean issueUpdatesForPrimaryKeys(TransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
boolean changed = false;
changed |= zUpdateLong(behavior, data, newData, VariableReferenceFinder.id(), false);
return changed;
}
public Object readResolve() throws ObjectStreamException
{
VariableReferenceAbstract result = (VariableReferenceAbstract) super.readResolve();
if (result.persistenceState == PersistenceState.PERSISTED)
{
result.persistenceState = PERSISTED_STATE;
}
else if (result.persistenceState == PersistenceState.IN_MEMORY)
{
result.persistenceState = MEMORY_STATE;
}
return result;
}
protected static void zConfigNonTx()
{
MEMORY_STATE = PersistenceState.IN_MEMORY_NON_TRANSACTIONAL;
PERSISTED_STATE = PersistenceState.PERSISTED_NON_TRANSACTIONAL;
}
protected static void zConfigFullTx()
{
MEMORY_STATE = PersistenceState.IN_MEMORY;
PERSISTED_STATE = PersistenceState.PERSISTED;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy