Tabnine Logo
CopyPolicy.buildWorkingCopyCloneFromRow
Code IndexAdd Tabnine to your IDE (free)

How to use
buildWorkingCopyCloneFromRow
method
in
org.eclipse.persistence.descriptors.copying.CopyPolicy

Best Java code snippets using org.eclipse.persistence.descriptors.copying.CopyPolicy.buildWorkingCopyCloneFromRow (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * It is now possible to build working copy clones directly from rows.
 * <p>An intermediary original is no longer needed.
 * <p>This has ramifications to the copy policy and cmp, for clones are
 * no longer built via cloning.
 * <p>Instead the copy policy must in some cases not copy at all.
 * this allows the stub of the clone to be registered before cloning its parts.
 */
public Object instantiateWorkingCopyCloneFromRow(AbstractRecord row, ObjectBuildingQuery query, Object primaryKey, UnitOfWorkImpl unitOfWork) {
  return this.descriptor.getCopyPolicy().buildWorkingCopyCloneFromRow(row, query, primaryKey, unitOfWork);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * It is now possible to build working copy clones directly from rows.
 * <p>An intermediary original is no longer needed.
 * <p>This has ramifications to the copy policy and cmp, for clones are
 * no longer built via cloning.
 * <p>Instead the copy policy must in some cases not copy at all.
 * this allows the stub of the clone to be registered before cloning its parts.
 */
public Object instantiateWorkingCopyCloneFromRow(AbstractRecord row, ObjectBuildingQuery query, Object primaryKey, UnitOfWorkImpl unitOfWork) {
  return this.descriptor.getCopyPolicy().buildWorkingCopyCloneFromRow(row, query, primaryKey, unitOfWork);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * It is now possible to build working copy clones directly from rows.
 * <p>An intermediary original is no longer needed.
 * <p>This has ramifications to the copy policy and cmp, for clones are
 * no longer built via cloning.
 * <p>Instead the copy policy must in some cases not copy at all.
 * this allows the stub of the clone to be registered before cloning its parts.
 */
public Object instantiateWorkingCopyCloneFromRow(AbstractRecord row, ObjectBuildingQuery query, Vector primaryKey, UnitOfWorkImpl unitOfWork) {
  return this.descriptor.getCopyPolicy().buildWorkingCopyCloneFromRow(row, query, primaryKey, unitOfWork);
}
org.eclipse.persistence.descriptors.copyingCopyPolicybuildWorkingCopyCloneFromRow

Javadoc

Return an instance with the primary key set from the row, used for building a working copy during a unit of work transactional read.

Popular methods of CopyPolicy

  • buildClone
    Return a shallow clone of the object for usage with object copying, or unit of work backup cloning.
  • buildWorkingCopyClone
    Return a shallow clone of the object for usage with the unit of work working copy.
  • buildsNewInstance
    Return if this copy policy creates a new instance, vs a clone.
  • clone
    Clone the CopyPolicy.
  • initialize
    Allow for any initialization or validation required.
  • setDescriptor
    Set the descriptor.
  • buildWorkingCopyCloneFromPrimaryKeyObject
    Return an instance with the primary key, used for building a working copy during a unit of work tran

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
  • getContentResolver (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Reference (javax.naming)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • CodeWhisperer alternatives
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