Tabnine Logo
XMLInteraction.getInteractionSpec
Code IndexAdd Tabnine to your IDE (free)

How to use
getInteractionSpec
method
in
org.eclipse.persistence.eis.interactions.XMLInteraction

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

origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Return the string for logging purposes.
 */
public String getLogString(Accessor accessor) {
  StringWriter writer = new StringWriter();
  writer.write("Executing ");
  writer.write(toString());
  writer.write(Helper.cr());
  writer.write("\tspec => ");
  writer.write(String.valueOf(getInteractionSpec()));
  writer.write(Helper.cr());
  writer.write("\tproperties => ");
  writer.write(String.valueOf(getProperties()));
  writer.write(Helper.cr());
  writer.write("\txml => ");
  Element dom = createInputDOM((EISAccessor)accessor);
  EISDOMRecord record = new EISDOMRecord(dom);
  record.transformToWriter(writer);
  return writer.toString();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Return the string for logging purposes.
 */
public String getLogString(Accessor accessor) {
  StringWriter writer = new StringWriter();
  writer.write("Executing ");
  writer.write(toString());
  writer.write(Helper.cr());
  writer.write("\tspec => ");
  writer.write(String.valueOf(getInteractionSpec()));
  writer.write(Helper.cr());
  writer.write("\tproperties => ");
  writer.write(String.valueOf(getProperties()));
  writer.write(Helper.cr());
  writer.write("\txml => ");
  Element dom = createInputDOM((EISAccessor)accessor);
  EISDOMRecord record = new EISDOMRecord(dom);
  record.transformToWriter(writer);
  return writer.toString();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Return the string for logging purposes.
 */
public String getLogString(Accessor accessor) {
  StringWriter writer = new StringWriter();
  writer.write("Executing ");
  writer.write(toString());
  writer.write(Helper.cr());
  writer.write("\tspec => ");
  writer.write(String.valueOf(getInteractionSpec()));
  writer.write(Helper.cr());
  writer.write("\tproperties => ");
  writer.write(String.valueOf(getProperties()));
  writer.write(Helper.cr());
  writer.write("\txml => ");
  Element dom = createInputDOM((EISAccessor)accessor);
  EISDOMRecord record = new EISDOMRecord(dom);
  record.transformToWriter(writer);
  return writer.toString();
}
org.eclipse.persistence.eis.interactionsXMLInteractiongetInteractionSpec

Popular methods of XMLInteraction

  • createInputDOM
    Create a DOM for this interaction. Convert the database row or arguments into an XML DOM tree.
  • createXMLRecord
    INTERNAL: Use the createRecord method on ObjectBuilder in case the root element is namespace qualifi
  • getArgumentNames
  • getArguments
  • getFunctionName
  • getInputRecordName
  • getInputResultPath
  • getInputRootElementName
    PUBLIC: Return the root element name to use for the input DOM.
  • getInputRow
  • getOutputArgumentNames
  • getOutputArguments
  • getOutputResultPath
  • getOutputArguments,
  • getOutputResultPath,
  • getOutputRootElementName,
  • getParameters,
  • getProperties,
  • getQuery,
  • hasArguments,
  • hasOutputArguments,
  • prepare

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSystemService (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • putExtra (Intent)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • 21 Best Atom Packages for 2021
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