Tabnine Logo
IndexedInteraction.createRecordElement
Code IndexAdd Tabnine to your IDE (free)

How to use
createRecordElement
method
in
org.eclipse.persistence.eis.interactions.IndexedInteraction

Best Java code snippets using org.eclipse.persistence.eis.interactions.IndexedInteraction.createRecordElement (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Create an indexed input record for this interaction.
 * Populate the data into the record from this interaction's arguments.
 */
public Record createInputRecord(EISAccessor accessor) {
  try {
    IndexedRecord record = accessor.getRecordFactory().createIndexedRecord(getInputRecordName());
    for (int index = 0; index < getParameters().size(); index++) {
      Object parameter = getParameters().get(index);
      // Allow conversion of nested rows and collections.
      record.add(createRecordElement("", parameter, accessor));
    }
    return record;
  } catch (ResourceException exception) {
    throw EISException.resourceException(exception, accessor, null);
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Create an indexed input record for this interaction.
 * Populate the data into the record from this interaction's arguments.
 */
public Record createInputRecord(EISAccessor accessor) {
  try {
    IndexedRecord record = accessor.getRecordFactory().createIndexedRecord(getInputRecordName());
    for (int index = 0; index < getParameters().size(); index++) {
      Object parameter = getParameters().get(index);
      // Allow conversion of nested rows and collections.
      record.add(createRecordElement("", parameter, accessor));
    }
    return record;
  } catch (ResourceException exception) {
    throw EISException.resourceException(exception, accessor, null);
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Create an indexed input record for this interaction.
 * Populate the data into the record from this interaction's arguments.
 */
public Record createInputRecord(EISAccessor accessor) {
  try {
    IndexedRecord record = accessor.getRecordFactory().createIndexedRecord(getInputRecordName());
    for (int index = 0; index < getParameters().size(); index++) {
      Object parameter = getParameters().get(index);
      // Allow conversion of nested rows and collections.
      record.add(createRecordElement("", parameter, accessor));
    }
    return record;
  } catch (ResourceException exception) {
    throw EISException.resourceException(exception, accessor, null);
  }
}
org.eclipse.persistence.eis.interactionsIndexedInteractioncreateRecordElement

Popular methods of IndexedInteraction

  • getArguments
    The arguments are the values in order of occurance in the record.
  • getInputRecordName
  • getOutputArgumentNames
  • getOutputArguments
    The output arguments in order of occurance in the record.
  • getOutputResultPath
  • getParameters

Popular in Java

  • Start an intent from android
  • onCreateOptionsMenu (Activity)
  • getResourceAsStream (ClassLoader)
  • getApplicationContext (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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