Tabnine Logo
org.eclipse.persistence.eis
Code IndexAdd Tabnine to your IDE (free)

How to use org.eclipse.persistence.eis

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

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

/**
 * PUBLIC:
 * Configure the login to connect through a JDNI managed connection factory and adapter connection spec.
 */
public void configureConnectionSpec(String jndiName, ConnectionSpec connectionSpec) {
  EISConnectionSpec spec = new EISConnectionSpec(jndiName);
  spec.setConnectionSpec(connectionSpec);
  setConnectionSpec(spec);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Configure the login to connect through a non-managed connection factory and the default getConnection().
 */
public void configureConnectionSpec(ConnectionFactory connectionFactory) {
  EISConnectionSpec spec = new EISConnectionSpec();
  spec.setConnectionFactory(connectionFactory);
  setConnectionSpec(spec);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  /**
   * PUBLIC:
   * Configure the login to connect through a non-managed connection factory and adapter connection spec.
   */
  public void configureConnectionSpec(ConnectionFactory connectionFactory, ConnectionSpec connectionSpec) {
    EISConnectionSpec spec = new EISConnectionSpec();
    spec.setConnectionFactory(connectionFactory);
    spec.setConnectionSpec(connectionSpec);
    setConnectionSpec(spec);
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Connect to the EIS adapter and return the Connection.
 */
public Object connectToDatasource(Accessor accessor, Session session) {
  return getConnectionSpec().connectToDataSource((EISAccessor)accessor, getProperties());
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Configure the login to connect through a JDNI managed connection factory and the default getConnection().
 */
public void configureConnectionSpec(String jndiName) {
  setConnectionSpec(new EISConnectionSpec(jndiName));
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

  /**
   * Remove a change set after it has been applied.
   */
  public void simpleRemoveChangeSet(Object changeSet) {
    // check whether the change set was added earlier
    if (!removeAddedChangeSet(changeSet)) {
      addRemovedChangeSet(changeSet);
    }
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Allow the platform to handle the creation of the Record for the DOM record.
 * By default instantiate an EISDOMRecord which introspects the record for a getDOM method.
 */
public AbstractRecord createDatabaseRowFromDOMRecord(Record record, EISInteraction call, EISAccessor accessor) {
  return new EISDOMRecord(record);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Return the specified "before" move index.
 */
private int getBeforeMoveIndex(int index) {
  int[][] pairs = getMoveIndexPairs();
  return pairs[index][0];
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Check if the field is contained in the row.
 */
public boolean containsKey(DatabaseField key) {
  return get(key) != null;
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Return and cast the platform.
 */
public EISPlatform getEISPlatform() {
  return (EISPlatform)getDatasourcePlatform();
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

  /**
   * PUBLIC:
   * Configure the login to connect through a non-managed connection factory and adapter connection spec.
   */
  public void configureConnectionSpec(ConnectionFactory connectionFactory, ConnectionSpec connectionSpec) {
    EISConnectionSpec spec = new EISConnectionSpec();
    spec.setConnectionFactory(connectionFactory);
    spec.setConnectionSpec(connectionSpec);
    setConnectionSpec(spec);
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Connect to the EIS adapter and return the Connection.
 */
public Object connectToDatasource(Accessor accessor, Session session) {
  return getConnectionSpec().connectToDataSource((EISAccessor)accessor, getProperties());
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Configure the login to connect through a JDNI managed connection factory and adapter connection spec.
 */
public void configureConnectionSpec(String jndiName, ConnectionSpec connectionSpec) {
  EISConnectionSpec spec = new EISConnectionSpec(jndiName);
  spec.setConnectionSpec(connectionSpec);
  setConnectionSpec(spec);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Configure the login to connect through a non-managed connection factory and the default getConnection().
 */
public void configureConnectionSpec(ConnectionFactory connectionFactory) {
  EISConnectionSpec spec = new EISConnectionSpec();
  spec.setConnectionFactory(connectionFactory);
  setConnectionSpec(spec);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * PUBLIC:
 * Configure the login to connect through a JDNI managed connection factory and the default getConnection().
 */
public void configureConnectionSpec(String jndiName) {
  setConnectionSpec(new EISConnectionSpec(jndiName));
}
origin: com.haulmont.thirdparty/eclipselink

  /**
   * PUBLIC:
   * Configure the login to connect through a non-managed connection factory and adapter connection spec.
   */
  public void configureConnectionSpec(ConnectionFactory connectionFactory, ConnectionSpec connectionSpec) {
    EISConnectionSpec spec = new EISConnectionSpec();
    spec.setConnectionFactory(connectionFactory);
    spec.setConnectionSpec(connectionSpec);
    setConnectionSpec(spec);
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Connect to the EIS adapter and return the Connection.
 */
public Object connectToDatasource(Accessor accessor, Session session) {
  return getConnectionSpec().connectToDataSource((EISAccessor)accessor, getProperties());
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Configure the login to connect through a JDNI managed connection factory and adapter connection spec.
 */
public void configureConnectionSpec(String jndiName, ConnectionSpec connectionSpec) {
  EISConnectionSpec spec = new EISConnectionSpec(jndiName);
  spec.setConnectionSpec(connectionSpec);
  setConnectionSpec(spec);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Configure the login to connect through a non-managed connection factory and the default getConnection().
 */
public void configureConnectionSpec(ConnectionFactory connectionFactory) {
  EISConnectionSpec spec = new EISConnectionSpec();
  spec.setConnectionFactory(connectionFactory);
  setConnectionSpec(spec);
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Configure the login to connect through a JDNI managed connection factory and the default getConnection().
 */
public void configureConnectionSpec(String jndiName) {
  setConnectionSpec(new EISConnectionSpec(jndiName));
}
org.eclipse.persistence.eis

Most used classes

  • EISAccessor
    EISAccessor is an implementation of the Accessor interface. It is responsible for: * Connecting via
  • EISConnectionSpec
    An EISConnectionSpec specifies how thejavax.resource.cci.Connection is accessed. There are three way
  • EISDOMRecord
    An EISDOMRecord is a wrapper for a DOM tree. It provides a Record/Map API on an XML DOM element. Thi
  • EISDescriptor
    An EISDescriptor defines the mapping from a JCA data structure to a Java object. There are two types
  • EISException
    Use an EISException when any problem is detected while interacting with an EIS datasource
  • MappedInteraction,
  • XQueryInteraction,
  • EISCompositeCollectionMapping,
  • EISCompositeDirectCollectionMapping,
  • EISCollectionChangeRecord,
  • EISLogin,
  • EISMappedRecord,
  • EISObjectPersistenceXMLProject,
  • EISOrderedCollectionChangeRecord,
  • EISPlatform,
  • EISSequence,
  • RecordConverter,
  • IndexedInteraction,
  • QueryStringInteraction
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