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

io.ebeaninternal.dbmigration.Detect Maven / Gradle / Ivy

There is a newer version: 12.5.2
Show newest version
package io.ebeaninternal.dbmigration;

import io.ebean.config.DatabaseConfig;

/**
 * Detect existence of JAXB
 */
public class Detect {

  /**
   * Return true if JAXB is present.
   */
  public static boolean isJAXBPresent(DatabaseConfig config) {
    return config.getClassLoadConfig().isPresent("javax.xml.bind.JAXBException");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy