org.hibernate.testing.schema.SchemaValidateHelper Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of hibernate-testing Show documentation
                Show all versions of hibernate-testing Show documentation
Support for testing Hibernate ORM functionality
                
             The newest version!
        
        /*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.testing.schema;
import org.hibernate.boot.Metadata;
import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.service.ServiceRegistry;
/**
 * @author Steve Ebersole
 */
public class SchemaValidateHelper {
	public static void validate(Metadata metadata) {
		validate( metadata, ( ( MetadataImplementor) metadata ).getMetadataBuildingOptions().getServiceRegistry() );
	}
	public static void validate(Metadata metadata, ServiceRegistry serviceRegistry) {
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy