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

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • scheduleAtFixedRate (Timer)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Kernel (java.awt.image)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • BoxLayout (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top plugins for Android Studio
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