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

io.ebean.config.TenantSchemaProvider Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.config;

/**
 * For multi-tenancy via DB SCHEMA supply the schema given the tenantId.
 */
@FunctionalInterface
public interface TenantSchemaProvider {

  /**
   * Return the DB schema for the given tenantId.
   *
   * @param tenantId The current tenant id.
   * @return The DB schema to use for the given tenant
   */
  String schema(Object tenantId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy