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

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

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

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

  /**
   * The platform holds its own instance of conversion manager to allow customization.
   */
  public ConversionManager getConversionManager() {
    // For XML we need an XMLConversionManager instance
    if (isDOMRecordSupported()) {
      // Lazy init for serialization.
      if (xmlConversionManager == null) {
        // Clone the default to allow customers to easily override the conversion manager
        xmlConversionManager = (XMLConversionManager) XMLConversionManager.getDefaultXMLManager().clone();
      }
      return xmlConversionManager;
    }
    // For non-XML, return the ConversionManager instance from DatasourcePlatform
    return super.getConversionManager();
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * The platform holds its own instance of conversion manager to allow customization.
 */
public ConversionManager getConversionManager() {
  // For XML we need an XMLConversionManager instance
  if (isDOMRecordSupported()) {
    // Lazy init for serialization.
    if (xmlConversionManager == null) {
      // Clone the default to allow customers to easily override the conversion manager
      xmlConversionManager = (XMLConversionManager) XMLConversionManager.getDefaultXMLManager().clone();
      xmlConversionManager.setLoader(super.getConversionManager().getLoader());
    }
    return xmlConversionManager;
  }
  // For non-XML, return the ConversionManager instance from DatasourcePlatform
  return super.getConversionManager();
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * The platform holds its own instance of conversion manager to allow customization.
 */
public ConversionManager getConversionManager() {
  // For XML we need an XMLConversionManager instance
  if (isDOMRecordSupported()) {
    // Lazy init for serialization.
    if (xmlConversionManager == null) {
      // Clone the default to allow customers to easily override the conversion manager
      xmlConversionManager = (XMLConversionManager) XMLConversionManager.getDefaultXMLManager().clone();
      xmlConversionManager.setLoader(super.getConversionManager().getLoader());
    }
    return xmlConversionManager;
  }
  // For non-XML, return the ConversionManager instance from DatasourcePlatform
  return super.getConversionManager();
}
org.eclipse.persistence.eisEISPlatformisDOMRecordSupported

Javadoc

Return if this platform supports 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.
  • requiresAutoCommit
    Return if this platform requires auto commit of the local transaction for interactions outside of an
  • getRecordConverter,
  • requiresAutoCommit,
  • setDOMInRecord,
  • setIsDOMRecordSupported,
  • setIsIndexedRecordSupported,
  • setIsMappedRecordSupported,
  • setRequiresAutoCommit,
  • setShouldConvertDataToStrings,
  • setSupportsLocalTransactions

Popular in Java

  • Reading from database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • onRequestPermissionsResult (Fragment)
  • getApplicationContext (Context)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top 17 Plugins for Android Studio
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