2 * Hibernate, Relational Persistence for Idiomatic Java
4 * JBoss, Home of Professional Open Source
5 * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors
6 * as indicated by the @authors tag. All rights reserved.
7 * See the copyright.txt in the distribution for a
8 * full listing of individual contributors.
10 * This copyrighted material is made available to anyone wishing to use,
11 * modify, copy, or redistribute it subject to the terms and conditions
12 * of the GNU Lesser General Public License, v. 2.1.
13 * This program is distributed in the hope that it will be useful, but WITHOUT A
14 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
15 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License,
17 * v.2.1 along with this distribution; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21 package org.hibernate.osgitest;
23 import org.hibernate.boot.Metadata;
24 import org.hibernate.engine.spi.SessionFactoryImplementor;
25 import org.hibernate.integrator.spi.Integrator;
26 import org.hibernate.service.spi.SessionFactoryServiceRegistry;
32 public class TestIntegrator implements Integrator {
34 public void integrate(
36 SessionFactoryImplementor sessionFactory,
37 SessionFactoryServiceRegistry serviceRegistry) {
38 System.out.println("Integrator#integrate");
41 public void disintegrate(SessionFactoryImplementor sessionFactory, SessionFactoryServiceRegistry serviceRegistry) {
42 System.out.println("Integrator#disintegrate");