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

com.github.zhengframework.jdbc.Sql2oAutoModuleProvider Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.github.zhengframework.jdbc;

public class Sql2oAutoModuleProvider extends AbstractAutoModule {

  @Override
  protected void installModule(String name) {
    if (name.isEmpty()) {
      install(new Sql2oModule());
    } else {
      install(new Sql2oModule(name));
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy