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

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

Best Java code snippets using org.eclipse.persistence.eis.interactions.IndexedInteraction.getParameters (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.interactionsIndexedInteractiongetParameters

Popular methods of IndexedInteraction

  • createRecordElement
  • 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

Popular in Java

  • Reactive rest calls using spring rest template
  • startActivity (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setContentView (Activity)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Table (org.hibernate.mapping)
    A relational table
  • PhpStorm for WordPress
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