Index: topia2/src/java/org/codelutin/topia/index/IndexEnginImplementor.java diff -u topia2/src/java/org/codelutin/topia/index/IndexEnginImplementor.java:1.1 topia2/src/java/org/codelutin/topia/index/IndexEnginImplementor.java:1.2 --- topia2/src/java/org/codelutin/topia/index/IndexEnginImplementor.java:1.1 Fri Oct 13 12:20:00 2006 +++ topia2/src/java/org/codelutin/topia/index/IndexEnginImplementor.java Mon Oct 16 15:38:20 2006 @@ -23,15 +23,15 @@ * Created: 13 oct. 06 11:38:28 * * @author poussin - * @version $Revision: 1.1 $ + * @version $Revision: 1.2 $ * - * Last update: $Date: 2006/10/13 12:20:00 $ + * Last update: $Date: 2006/10/16 15:38:20 $ * by : $Author: bpoussin $ */ package org.codelutin.topia.index; -import org.codelutin.topia.IndexEnginService; +import org.codelutin.topia.TopiaIndexService; /** @@ -40,7 +40,7 @@ * * @author poussin */ -public interface IndexEnginImplementor extends IndexEnginService { +public interface IndexEnginImplementor extends TopiaIndexService { /** * During object modification in transaction, this method is called to Index: topia2/src/java/org/codelutin/topia/index/NotIndexable.java diff -u /dev/null topia2/src/java/org/codelutin/topia/index/NotIndexable.java:1.1 --- /dev/null Mon Oct 16 15:38:25 2006 +++ topia2/src/java/org/codelutin/topia/index/NotIndexable.java Mon Oct 16 15:38:20 2006 @@ -0,0 +1,44 @@ +/* *##% + * Copyright (C) 2006 + * Code Lutin, Cédric Pineau, Benjamin Poussin + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *##%*/ + +/* * + * NotIndexable.java + * + * Created: 13 oct. 06 20:51:59 + * + * @author poussin + * @version $Revision: 1.1 $ + * + * Last update: $Date: 2006/10/16 15:38:20 $ + * by : $Author: bpoussin $ + */ + +package org.codelutin.topia.index; + + +/** + * All entity that you don't want to be indexed must implements this interface + * + * @author poussin + */ +public interface NotIndexable { + +} + +