1 /* 2 * org.riverock.dbrevision - Database revision engine 3 * For more information about DbRevision, please visit project site 4 * http://www.riverock.org 5 * 6 * Copyright (C) 2006-2006, Riverock Software, All Rights Reserved. 7 * 8 * Riverock - The Open-source Java Development Community 9 * http://www.riverock.org 10 * 11 * 12 * This library is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU Lesser General Public 14 * License as published by the Free Software Foundation; either 15 * version 2.1 of the License, or (at your option) any later version. 16 * 17 * This library is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * Lesser General Public License for more details. 21 * 22 * You should have received a copy of the GNU Lesser General Public 23 * License along with this library; if not, write to the Free Software 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 */ 26 package org.riverock.dbrevision.manager.patch; 27 28 import org.riverock.dbrevision.annotation.schema.db.Action; 29 import org.riverock.dbrevision.db.Database; 30 31 /** 32 * User: Admin 33 * Date: May 20, 2003 34 * Time: 10:02:30 PM 35 * <p/> 36 * $Id: PatchAction.java 1075 2006-11-24 18:08:42Z serg_main $ 37 */ 38 public interface PatchAction { 39 public PatchStatus process(Database adapter) throws Exception; 40 }