All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enterprises.orbital.evekit.account.EveKitRefDataProvider Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package enterprises.orbital.evekit.account;

import enterprises.orbital.base.OrbitalProperties;
import enterprises.orbital.db.ConnectionFactory;

/**
 * Provider for XML API reference data sync.
 */
public class EveKitRefDataProvider {
  public static final String REF_DATA_PU_PROP    = "enterprises.orbital.evekit.ref.persistence_unit";
  public static final String REF_DATA_PU_DEFAULT = "evekit-ref";

  public static ConnectionFactory getFactory() {
    return ConnectionFactory.getFactory(OrbitalProperties.getGlobalProperty(REF_DATA_PU_PROP, REF_DATA_PU_DEFAULT));
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy