Added integration-test provided by Erik-Berndt Scheper <erik.berndt.scheper@gmail...
[hibernate4-maven-plugin] / src / it / hibernate4-maven-plugin-envers-sample / src / test / java / org / bitbucket / fbascheper / tutorial / envers / util / InitScriptRunningDataSourceFactoryBean.java
1 /**
2  * Copyright 2013 F.B.A. Scheper.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License. *
15  */
16 package org.bitbucket.fbascheper.tutorial.envers.util;
17
18 import javax.sql.DataSource;
19
20 /**
21  * A Bean of a {@link javax.sql.DataSource} type that initially runs a database creation script.
22  *
23  * @author Erik-Berndt Scheper
24  * @since 11-09-2013
25  */
26 public class InitScriptRunningDataSourceFactoryBean {
27
28     /**
29      * Factory method returning a DataSource after running the init script.
30      *
31      * @param initScriptRunner the script runner implementation
32      */
33     public static DataSource dataSourceFactory(InitScriptRunner initScriptRunner) {
34
35         initScriptRunner.runScript();
36
37         return initScriptRunner.getDataSource();
38     }
39
40 }