klass.model.meta.domain.EnumerationLiteralAbstract 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 EnumerationLiteralAbstract extends com.gs.fw.common.mithra.superclassimpl.MithraTransactionalObjectImpl
implements
NamedElement
{
private static byte MEMORY_STATE = PersistenceState.IN_MEMORY;
private static byte PERSISTED_STATE = PersistenceState.PERSISTED;
private static final Logger logger = LoggerFactory.getLogger(EnumerationLiteral.class.getName());
private static final RelationshipHashStrategy forenumeration = new EnumerationRhs();
private static final class EnumerationRhs implements RelationshipHashStrategy
{
public boolean equalsForRelationship(Object _srcObject, Object _srcData, Object _targetData, Timestamp _asOfDate0, Timestamp _asOfDate1)
{
EnumerationLiteralData _castedSrcData = (EnumerationLiteralData) _srcData;
EnumerationData _castedTargetData = (EnumerationData) _targetData;
if (_castedSrcData.getEnumerationName()!= null && _castedSrcData.getEnumerationName().equals(_castedTargetData.getName()))
{
return true;
}
return false;
}
public int computeHashCodeFromRelated(Object _srcObject, Object _srcData)
{
EnumerationLiteralData _castedSrcData = (EnumerationLiteralData) _srcData;
return HashUtil.hash(_castedSrcData.getEnumerationName());
}
public int computeOffHeapHashCodeFromRelated(Object _srcObject, Object _srcData)
{
EnumerationLiteralData _castedSrcData = (EnumerationLiteralData) _srcData;
return HashUtil.offHeapHash(_castedSrcData.getEnumerationName());
}
}
public EnumerationLiteralAbstract()
{
this.persistenceState = MEMORY_STATE;
}
public EnumerationLiteral getDetachedCopy() throws MithraBusinessException
{
return (EnumerationLiteral) super.getDetachedCopy();
}
public EnumerationLiteral getNonPersistentCopy() throws MithraBusinessException
{
EnumerationLiteral result = (EnumerationLiteral) super.getNonPersistentCopy();
result.persistenceState = MEMORY_STATE;
return result;
}
public EnumerationLiteral copyDetachedValuesToOriginalOrInsertIfNew()
{
return (EnumerationLiteral) this.zCopyDetachedValuesToOriginalOrInsertIfNew();
}
public EnumerationLiteral zFindOriginal()
{
EnumerationLiteralData data = (EnumerationLiteralData) this.currentData;
Operation op;
op = EnumerationLiteralFinder.enumerationName().eq(data.getEnumerationName());
op = op.and(EnumerationLiteralFinder.name().eq(data.getName()));
return EnumerationLiteralFinder.findOne(op);
}
public boolean isModifiedSinceDetachmentByDependentRelationships()
{
if(this.isModifiedSinceDetachment()) return true;
return false;
}
private Logger getLogger()
{
return logger;
}
public MithraDataObject zAllocateData()
{
return new EnumerationLiteralData();
}
protected void zSetFromEnumerationLiteralData( EnumerationLiteralData data )
{
super.zSetData(data);
this.persistenceState = PERSISTED_STATE;
}
public void setFromEnumerationLiteralData( EnumerationLiteralData data )
{
super.zSetData(data);
}
public void zWriteDataClassName(ObjectOutput out) throws IOException
{
}
public final boolean isEnumerationNameNull()
{
return ((EnumerationLiteralData) this.zSynchronizedGetData()).isEnumerationNameNull();
}
public final String getEnumerationName()
{
EnumerationLiteralData data = (EnumerationLiteralData) this.zSynchronizedGetData();
return data.getEnumerationName();
}
public void setEnumerationName(String newValue)
{
if (newValue != null && newValue.length() > 256)
throw new MithraBusinessException("Attribute 'enumerationName' cannot exceed maximum length of 256: " + newValue);
zSetString(EnumerationLiteralFinder.enumerationName(), newValue, true, false );
}
public final boolean isNameNull()
{
return ((EnumerationLiteralData) this.zSynchronizedGetData()).isNameNull();
}
public final String getName()
{
EnumerationLiteralData data = (EnumerationLiteralData) this.zSynchronizedGetData();
return data.getName();
}
public void setName(String newValue)
{
if (newValue != null && newValue.length() > 256)
throw new MithraBusinessException("Attribute 'name' cannot exceed maximum length of 256: " + newValue);
zSetString(EnumerationLiteralFinder.name(), newValue, true, false );
}
public boolean isOrdinalNull()
{
return ((EnumerationLiteralData) this.zSynchronizedGetData()).isOrdinalNull();
}
public int getOrdinal()
{
EnumerationLiteralData data = (EnumerationLiteralData) this.zSynchronizedGetData();
return data.getOrdinal();
}
public void setOrdinal(int newValue)
{
zSetInteger(EnumerationLiteralFinder.ordinal(), newValue, false, false ,false);
}
public boolean isPrettyNameNull()
{
return ((EnumerationLiteralData) this.zSynchronizedGetData()).isPrettyNameNull();
}
public String getPrettyName()
{
EnumerationLiteralData data = (EnumerationLiteralData) this.zSynchronizedGetData();
return data.getPrettyName();
}
public void setPrettyName(String newValue)
{
if (newValue != null && newValue.length() > 256)
throw new MithraBusinessException("Attribute 'prettyName' cannot exceed maximum length of 256: " + newValue);
zSetString(EnumerationLiteralFinder.prettyName(), newValue, false, false );
}
protected void issuePrimitiveNullSetters(TransactionalBehavior behavior, MithraDataObject data)
{
}
public void zPersistDetachedRelationships(MithraDataObject _data)
{
EnumerationLiteralData _newData = (EnumerationLiteralData) _data;
}
public void zSetTxDetachedDeleted()
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
if (_behavior.isDetached() && _behavior.isDeleted()) return;
EnumerationLiteralData _newData = (EnumerationLiteralData) _behavior.getCurrentDataForRead(this);
this.zSetTxPersistenceState(PersistenceState.DETACHED_DELETED);
}
public void zSetNonTxDetachedDeleted()
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
EnumerationLiteralData _newData = (EnumerationLiteralData) _behavior.getCurrentDataForRead(this);
this.zSetNonTxPersistenceState(PersistenceState.DETACHED_DELETED);
}
/**
* Relationship Expression:
Enumeration.name = this.enumerationName
* @see Enumeration#getEnumerationLiterals() reverse relationship Enumeration.getEnumerationLiterals()
* @return The enumeration
*/
public Enumeration getEnumeration()
{
Enumeration _result = null;
Operation _op = null;
TransactionalBehavior _behavior = zGetTransactionalBehaviorForReadWithWaitIfNecessary();
EnumerationLiteralData _data = (EnumerationLiteralData) _behavior.getCurrentDataForRead(this);
MithraObjectPortal _portal = null;
if (_behavior.isPersisted())
{
{
_portal = EnumerationFinder.getMithraObjectPortal();
Object _related = _portal.getAsOneFromCache(this, _data, forenumeration, null, null);
if (!(_related instanceof NulledRelation)) _result = (Enumeration) _related;
if (_related == null)
{
_op = EnumerationFinder.name().eq(_data.getEnumerationName());
}
}
}
else if (_behavior.isDetached())
{
if (_data.getEnumeration() instanceof NulledRelation)
{
return null;
}
_result = (Enumeration) _data.getEnumeration();
if (_result == null)
{
{
Operation detachedOp = EnumerationFinder.name().eq(_data.getEnumerationName());
_result = EnumerationFinder.zFindOneForRelationship(detachedOp);
if(_result != null)
{
_result = _result.getDetachedCopy();
}
}
_data = (EnumerationLiteralData) _behavior.getCurrentDataForWrite(this);
_data.setEnumeration(_result);
}
}
else if (_behavior.isInMemory())
{
_result = (Enumeration) _data.getEnumeration();
if (_result == null)
{
{
_op = EnumerationFinder.name().eq(_data.getEnumerationName());
}
}
}
if (_op != null)
{
_result = EnumerationFinder.zFindOneForRelationship(_op);
}
return _result;
}
public void setEnumeration(Enumeration enumeration)
{
Enumeration _enumeration = (Enumeration) enumeration;
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
EnumerationLiteralData _data = (EnumerationLiteralData) _behavior.getCurrentDataForWrite(this);
if (_behavior.isInMemory())
{
Object _prev = _data.getEnumeration();
if (_behavior.isDetached() && _prev != null)
{
((DelegatingList)((Enumeration)_prev).getEnumerationLiterals()).zMarkMoved( (EnumerationLiteral) this);
}
_data.setEnumeration(_enumeration);
_enumeration.getEnumerationLiterals().add( (EnumerationLiteral) this);
}
else if (_behavior.isPersisted())
{
_behavior.clearTempTransaction(this);
if (_enumeration == null)
{
this.setEnumerationName(null);
}
else
{
this.setEnumerationName(
_enumeration.getName());
}
}
else throw new RuntimeException("not implemented");
}
public void zSetParentContainerenumeration(EnumerationAbstract parent)
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
EnumerationLiteralData _data = (EnumerationLiteralData) _behavior.getCurrentDataForWrite(this);
_behavior.clearTempTransaction(this);
if (_behavior.isInMemory())
{
_data.setEnumeration(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 EnumerationLiteral zCascadeCopyThenInsert() throws MithraBusinessException
{
TransactionalBehavior _behavior = zGetTransactionalBehaviorForWriteWithWaitIfNecessary();
EnumerationLiteral original = (EnumerationLiteral) _behavior.copyThenInsert(this);
return original;
}
protected void cascadeDeleteImpl() throws MithraBusinessException
{
this.delete();
}
public Cache zGetCache()
{
return EnumerationLiteralFinder.getMithraObjectPortal().getCache();
}
public MithraObjectPortal zGetPortal()
{
return EnumerationLiteralFinder.getMithraObjectPortal();
}
public EnumerationLiteral getOriginalPersistentObject()
{
return this.zFindOriginal();
}
protected boolean issueUpdatesForNonPrimaryKeys(TransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
boolean changed = false;
changed |= zUpdateInteger(behavior, data, newData, EnumerationLiteralFinder.ordinal(), false);
changed |= zUpdateString(behavior, data, newData, EnumerationLiteralFinder.prettyName(), false);
return changed;
}
protected boolean issueUpdatesForPrimaryKeys(TransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
boolean changed = false;
changed |= zUpdateString(behavior, data, newData, EnumerationLiteralFinder.enumerationName(), false);
changed |= zUpdateString(behavior, data, newData, EnumerationLiteralFinder.name(), false);
return changed;
}
public Object readResolve() throws ObjectStreamException
{
EnumerationLiteralAbstract result = (EnumerationLiteralAbstract) 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