/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2011, Red Hat Inc. or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate;

import java.util.Locale;
import java.util.Map;

import org.hibernate.cfg.Environment;
import org.hibernate.internal.CoreMessageLogger;

import org.jboss.logging.Logger;

Describes the methods for multi-tenancy understood by Hibernate.
Author:Steve Ebersole
/** * Describes the methods for multi-tenancy understood by Hibernate. * * @author Steve Ebersole */
public enum MultiTenancyStrategy {
Multi-tenancy implemented by use of discriminator columns.
/** * Multi-tenancy implemented by use of discriminator columns. */
DISCRIMINATOR,
Multi-tenancy implemented as separate schemas.
/** * Multi-tenancy implemented as separate schemas. */
SCHEMA,
Multi-tenancy implemented as separate databases.
/** * Multi-tenancy implemented as separate databases. */
DATABASE,
No multi-tenancy.
/** * No multi-tenancy. */
NONE; private static final CoreMessageLogger LOG = Logger.getMessageLogger( CoreMessageLogger.class, MultiTenancyStrategy.class.getName() );
Does this strategy indicate a requirement for the specialized MultiTenantConnectionProvider, rather than the traditional ConnectionProvider?
Returns:true indicates a MultiTenantConnectionProvider is required; false indicates it is not.
/** * Does this strategy indicate a requirement for the specialized * {@link org.hibernate.engine.jdbc.connections.spi.MultiTenantConnectionProvider}, rather than the * traditional {@link org.hibernate.engine.jdbc.connections.spi.ConnectionProvider}? * * @return {@code true} indicates a MultiTenantConnectionProvider is required; {@code false} indicates it is not. */
public boolean requiresMultiTenantConnectionProvider() { return this == DATABASE || this == SCHEMA; }
Extract the MultiTenancyStrategy from the setting map.
Params:
  • properties – The map of settings.
Returns:The selected strategy. NONE is always the default.
/** * Extract the MultiTenancyStrategy from the setting map. * * @param properties The map of settings. * * @return The selected strategy. {@link #NONE} is always the default. */
public static MultiTenancyStrategy determineMultiTenancyStrategy(Map properties) { final Object strategy = properties.get( Environment.MULTI_TENANT ); if ( strategy == null ) { return MultiTenancyStrategy.NONE; } if ( MultiTenancyStrategy.class.isInstance( strategy ) ) { return (MultiTenancyStrategy) strategy; } final String strategyName = strategy.toString(); try { return MultiTenancyStrategy.valueOf( strategyName.toUpperCase(Locale.ROOT) ); } catch ( RuntimeException e ) { LOG.warn( "Unknown multi tenancy strategy [ " +strategyName +" ], using MultiTenancyStrategy.NONE." ); return MultiTenancyStrategy.NONE; } } }