Package org.openstreetmap.osmosis.core.database

Examples of org.openstreetmap.osmosis.core.database.DatabasePreferences


   * {@inheritDoc}
   */
  @Override
  protected TaskManager createTaskManagerImpl(TaskConfiguration taskConfig) {
    DatabaseLoginCredentials loginCredentials;
    DatabasePreferences preferences;
   
    // Get the task arguments.
    loginCredentials = getDatabaseLoginCredentials(taskConfig);
    preferences = getDatabasePreferences(taskConfig);
   
View Full Code Here


   * {@inheritDoc}
   */
  @Override
  protected TaskManager createTaskManagerImpl(TaskConfiguration taskConfig) {
    DatabaseLoginCredentials loginCredentials;
    DatabasePreferences preferences;
    NodeLocationStoreType storeType;
    boolean keepInvalidWays;
   
    // Get the task arguments.
    loginCredentials = getDatabaseLoginCredentials(taskConfig);
View Full Code Here

   * {@inheritDoc}
   */
  @Override
  protected TaskManager createTaskManagerImpl(TaskConfiguration taskConfig) {
    DatabaseLoginCredentials loginCredentials;
    DatabasePreferences preferences;
   
    // Get the task arguments.
    loginCredentials = getDatabaseLoginCredentials(taskConfig);
    preferences = getDatabasePreferences(taskConfig);
   
View Full Code Here

   * Provides a fully configured set of database preferences based on the configuration.
   *
   * @return The database preferences.
   */
  public DatabasePreferences getDatabasePreferences() {
    return new DatabasePreferences(getValidateSchemaVersion(), getAllowIncorrectSchemaVersion());
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.core.database.DatabasePreferences

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.