congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
kata.domain
Code IndexAdd Tabnine to your IDE (free)

How to use kata.domain

Best Java code snippets using kata.domain (Showing top 20 results out of 315)

origin: goldmansachs/reladomo-kata

protected void copyNonPrimaryKeyAttributesFromImpl(MithraTransactionalObject f, MithraTransaction tx) throws MithraBusinessException
{
  PetAbstract from = (PetAbstract) f;
  PetData newData = from.zSynchronizedGetData();
  this.setPersonId(newData.getPersonId());
  this.setPetAge(newData.getPetAge());
  this.setPetTypeId(newData.getPetTypeId());
}
origin: goldmansachs/reladomo-kata

protected boolean issueUpdates(DatedTransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
  boolean changed = false;
  changed |= zUpdateInteger(behavior, data, newData, EmployeeFinder.age(), false);
  changed |= zUpdateInteger(behavior, data, newData, EmployeeFinder.employeeId(), false);
  changed |= zUpdateString(behavior, data, newData, EmployeeFinder.firstName(), false);
  changed |= zUpdateString(behavior, data, newData, EmployeeFinder.lastName(), false);
  return changed;
}
origin: goldmansachs/reladomo-kata

public ObjectSequenceList getDetachedCopy()
{
  ObjectSequenceList result = new ObjectSequenceList();
  zDetachInto(result);
  return result;
}
origin: goldmansachs/reladomo-kata

protected boolean issueUpdates(DatedTransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
  boolean changed = false;
  changed |= zUpdateInteger(behavior, data, newData, AccountBalanceFinder.accountId(), false);
  changed |= zUpdateDouble(behavior, data, newData, AccountBalanceFinder.balance(), false);
  return changed;
}
origin: goldmansachs/reladomo-kata

protected boolean issueUpdatesForNonPrimaryKeys(TransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData)
{
  boolean changed = false;
  changed |= zUpdateLong(behavior, data, newData, ObjectSequenceFinder.nextValue(), false);
  return changed;
}
origin: goldmansachs/reladomo-kata

public PersonList getDetachedCopy()
{
  PersonList result = new PersonList();
  zDetachInto(result);
  return result;
}
origin: goldmansachs/reladomo-kata

  public void setNextValueNull()
  {
    zSetAttributeNull(ObjectSequenceFinder.nextValue());
  }
}
origin: goldmansachs/reladomo-kata

public String getLastName()
{
  PersonData data = (PersonData) this.zSynchronizedGetData();
  return data.getLastName();
}
origin: goldmansachs/reladomo-kata

public MithraObject deserializeForRefresh(ObjectInput in) throws IOException, ClassNotFoundException
{
  AllTypesData data = new AllTypesData();
  data.zDeserializePrimaryKey(in);
  return this.createObject(data);
}
origin: goldmansachs/reladomo-kata

  public List getForDateRange(MithraDataObject obj, Timestamp start, Timestamp end) throws MithraDatabaseException
  {
    return this.getForDateRange(obj, start, end, AccountBalanceFinder.businessDate(),
      AccountBalanceFinder.processingDate());
  }
}
origin: goldmansachs/reladomo-kata

public boolean equalsForRelationship(Object _srcObject, Object _srcData, Object _targetData, Timestamp _asOfDate0, Timestamp _asOfDate1)
{
  PetData _castedSrcData = (PetData) _srcData;
  PersonData _castedTargetData = (PersonData) _targetData;
  if (_castedSrcData.getPersonId() == _castedTargetData.getPersonId())
  {
    return true;
  }
  return false;
}
origin: goldmansachs/reladomo-kata

  public void setNullableDoubleValueNull()
  {
    zSetAttributeNull(AllTypesFinder.nullableDoubleValue());
  }
}
origin: goldmansachs/reladomo-kata

public MithraList<? extends Task> findManyBypassCache(com.gs.fw.finder.Operation operation)
{
  TaskList result = (TaskList) this.findMany(operation);
  result.setBypassCache(true);
  return result;
}
origin: goldmansachs/reladomo-kata

public CustomerList getDetachedCopy()
{
  CustomerList result = new CustomerList();
  zDetachInto(result);
  return result;
}
origin: goldmansachs/reladomo-kata

public int getCustomerId()
{
  CustomerData data = (CustomerData) this.zSynchronizedGetData();
  return data.getCustomerId();
}
origin: goldmansachs/reladomo-kata

public byte getByteValue()
{
  AllTypesData data = (AllTypesData) this.zSynchronizedGetData();
  return data.getByteValue();
}
origin: goldmansachs/reladomo-kata

public Date getDateValue()
{
  AllTypesData data = (AllTypesData) this.zSynchronizedGetData();
  return data.getDateValue();
}
origin: goldmansachs/reladomo-kata

public float getFloatValue()
{
  AllTypesData data = (AllTypesData) this.zSynchronizedGetData();
  return data.getFloatValue();
}
origin: goldmansachs/reladomo-kata

public ObjectSequenceList getDetachedCopy()
{
  ObjectSequenceList result = new ObjectSequenceList();
  zDetachInto(result);
  return result;
}
origin: goldmansachs/reladomo-kata

protected boolean issueUpdatesUntil(DatedTransactionalBehavior behavior, MithraDataObject data, MithraDataObject newData, Timestamp until)
{
  boolean changed = false;
  changed |= zUpdateInteger(behavior, data, newData, AccountBalanceFinder.accountId(), false, until);
  changed |= zUpdateDouble(behavior, data, newData, AccountBalanceFinder.balance(), false, until);
  return changed;
}
kata.domain

Most used classes

  • ObjectSequence
  • ObjectSequenceAbstract
    This file was automatically generated using Mithra 17.0.0. Please do not modify it. Add custom logic
  • ObjectSequenceData
    This file was automatically generated using Mithra 17.0.0. Please do not modify it. Add custom logic
  • ObjectSequenceDatabaseObjectAbstract
    This file was automatically generated using Mithra 17.0.0. Please do not modify it. Add custom logic
  • ObjectSequenceFinder$ObjectSequenceRelatedFinder
  • ObjectSequenceFinder,
  • ObjectSequenceList,
  • ObjectSequenceListAbstract,
  • Person,
  • PersonAbstract,
  • PersonData,
  • PersonDatabaseObjectAbstract,
  • PersonFinder$PersonRelatedFinder,
  • PersonFinder$PersonSingleFinder,
  • PersonFinder,
  • PersonList,
  • PersonListAbstract,
  • AccountBalance,
  • AccountBalanceAbstract
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now