Package com.esri.gpt.framework.sql

Examples of com.esri.gpt.framework.sql.DatabaseReferences


// constructors ================================================================
/** Default constructor. */
public ApplicationConfiguration() {
  super();
  setDatabaseReferences(new DatabaseReferences());
  setIdentityConfiguration(new IdentityConfiguration());
  setCatalogConfiguration(new CatalogConfiguration());
  setMailConfiguration(new MailConfiguration());
  setThreadSchedulerConfiguration(new ThreadSchedulerConfiguration());
  setDownloadDataConfiguration(new DownloadConfiguration());
View Full Code Here


* @param references the database references
*/
private void setDatabaseReferences(DatabaseReferences references) {
  _databaseReferences = references;
  if (_databaseReferences == null) {
    _databaseReferences = new DatabaseReferences();
  }
}
View Full Code Here

TOP

Related Classes of com.esri.gpt.framework.sql.DatabaseReferences

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.