1 /* 2 * Licensed under the Apache License, Version 2.0 (the "License"); 3 * you may not use this file except in compliance with the License. 4 * You may obtain a copy of the License at 5 * 6 * http://www.apache.org/licenses/LICENSE-2.0 7 * 8 * Unless required by applicable law or agreed to in writing, software 9 * distributed under the License is distributed on an "AS IS" BASIS, 10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 * See the License for the specific language governing permissions and 12 * limitations under the License. 13 */ 14 package de.softwareforge.testing.postgres.embedded; 15 16 import java.sql.SQLException; 17 import javax.sql.DataSource; 18 19 import edu.umd.cs.findbugs.annotations.NonNull; 20 21 /** 22 * A DatabasePreparer applies an arbitrary set of changes (e.g. database migrations, user creation) to a database represented by the {@link DataSource}. 23 * <p> 24 * The preparation steps are expected to be deterministic. 25 * 26 * @deprecated Use {@link EmbeddedPostgresPreparer} with {@link DataSource} as type parameter. 27 */ 28 @Deprecated 29 public interface DatabasePreparer { 30 31 DatabasePreparer NOOP_PREPARER = ds -> {}; 32 33 void prepare(@NonNull DataSource ds) throws SQLException; 34 }