Codota Logo
EISPlatform.setDOMInRecord
Code IndexAdd Codota to your IDE (free)

How to use
setDOMInRecord
method
in
org.eclipse.persistence.eis.EISPlatform

Best Java code snippets using org.eclipse.persistence.eis.EISPlatform.setDOMInRecord (Showing top 3 results out of 315)

  • Common ways to obtain EISPlatform
private void myMethod () {
EISPlatform e =
  • Codota Iconnew EISPlatform()
  • Smart code suggestions by Codota
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Create a DOM input record for this interaction.
 * Convert the database row or arguments into an XML DOM tree.
 */
public Record createInputRecord(EISAccessor accessor) {
  Record record = accessor.getEISPlatform().createDOMRecord(getInputRecordName(), accessor);
  Element dom = createInputDOM(accessor);
  accessor.getEISPlatform().setDOMInRecord(dom, record, this, accessor);
  if (record instanceof XMLRecord) {
   ((XMLRecord) record).setSession(this.getQuery().getSession());
  }
  return record;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Create a DOM input record for this interaction.
 * Convert the database row or arguments into an XML DOM tree.
 */
public Record createInputRecord(EISAccessor accessor) {
  Record record = accessor.getEISPlatform().createDOMRecord(getInputRecordName(), accessor);
  Element dom = createInputDOM(accessor);
  accessor.getEISPlatform().setDOMInRecord(dom, record, this, accessor);
  if (record instanceof XMLRecord) {
   ((XMLRecord) record).setSession(this.getQuery().getSession());
  }
  return record;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Create a DOM input record for this interaction.
 * Convert the database row or arguments into an XML DOM tree.
 */
public Record createInputRecord(EISAccessor accessor) {
  Record record = accessor.getEISPlatform().createDOMRecord(getInputRecordName(), accessor);
  Element dom = createInputDOM(accessor);
  accessor.getEISPlatform().setDOMInRecord(dom, record, this, accessor);
  if (record instanceof XMLRecord) {
   ((XMLRecord) record).setSession(this.getQuery().getSession());
  }
  return record;
}
org.eclipse.persistence.eisEISPlatformsetDOMInRecord

Javadoc

Stores the XML DOM value into the record. This must be implemented by the platform if it support XML/DOM records.

Popular methods of EISPlatform

  • <init>
    Default constructor.
  • appendParameter
    Add the parameter. Convert the parameter to a string and write it. Convert rows to XML strings.
  • buildInteractionSpec
    Allow the platform to build the interaction spec based on properties defined in the interaction.
  • buildRow
    INTERNAL: Allow the platform to handle record to row conversion.
  • buildRows
    Allow the platform to handle record to row conversion.
  • createDOMRecord
    Allow the platform to handle the creation of the DOM record. By default create a mapped record an as
  • createDatabaseRowFromDOMRecord
    INTERNAL: Allow the platform to handle the creation of the Record for the DOM record. By default ins
  • createInputRecord
    Allow the platform to create the appropriate type of record for the interaction.
  • createOutputRecord
    Allow the platform to create the appropriate type of record for the interaction. If an output record
  • getConversionManager
    The platform holds its own instance of conversion manager to allow customization.
  • getRecordConverter
    Return the record converter.
  • isDOMRecordSupported
    Return if this platform supports XML/DOM Records.
  • getRecordConverter,
  • isDOMRecordSupported,
  • requiresAutoCommit,
  • setIsDOMRecordSupported,
  • setIsIndexedRecordSupported,
  • setIsMappedRecordSupported,
  • setRequiresAutoCommit,
  • setShouldConvertDataToStrings,
  • setSupportsLocalTransactions

Popular in Java

  • Finding current android device location
  • putExtra (Intent)
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JCheckBox (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now