1 package fr.ifremer.adagio.synchro.intercept; 2 3 /* 4 * #%L 5 * Tutti :: Persistence 6 * $Id: ReferentialSynchroSpecificTableTask.java 1573 2014-02-04 16:41:40Z tchemit $ 7 * $HeadURL: http://svn.forge.codelutin.com/svn/tutti/trunk/tutti-persistence/src/main/java/fr/ifremer/adagio/core/service/technical/synchro/specific/ReferentialSynchroSpecificTableTask.java $ 8 * %% 9 * Copyright (C) 2012 - 2014 Ifremer 10 * %% 11 * This program is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Affero General Public License as published by 13 * the Free Software Foundation, either version 3 of the License, or 14 * (at your option) any later version. 15 * 16 * This program is distributed in the hope that it will be useful, 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 * GNU General Public License for more details. 20 * 21 * You should have received a copy of the GNU Affero General Public License 22 * along with this program. If not, see <http://www.gnu.org/licenses/>. 23 * #L% 24 */ 25 26 /** 27 * Created on 4/10/14. 28 * 29 * @author Benoit Lavenier <benoit.lavenier@e-is.pro> 30 * @since 3.5.3 31 */ 32 public interface SynchroInterceptorChain extends SynchroInterceptor { 33 34 void setNext(SynchroInterceptor next); 35 36 SynchroInterceptor getNext(); 37 38 }