Index: topia/src/java/org/codelutin/topia/TopiaConst.java diff -u /dev/null topia/src/java/org/codelutin/topia/TopiaConst.java:1.1 --- /dev/null Fri Aug 6 17:51:35 2004 +++ topia/src/java/org/codelutin/topia/TopiaConst.java Fri Aug 6 17:51:30 2004 @@ -0,0 +1,55 @@ +/* *##% + * Copyright (C) 2002, 2003 Code Lutin + * + * 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. + *##%*/ + +/* * + * TopiaConst.java + * + * Created: 3 juil. 2004 + * + * @author Benjamin Poussin + * Copyright Code Lutin + * @version $Revision: 1.1 $ + * + * Mise a jour: $Date: 2004/08/06 17:51:30 $ + * par : $Author: bpoussin $ + */ + +package org.codelutin.topia; + +public interface TopiaConst{ // TopiaConst + public final static String DEFAULT_CONTEXT_PROPERTIES_FILENAME = + "topiaContext.properties"; + + public final static String CONTEXT_CLASS = + "context.class"; + public final static String HELPER_DISTRIBUTION = + "context.helper.distribution"; + public final static String HELPER_PERSISTENCE = + "context.helper.persistence"; + public final static String HELPER_HOOK = + "context.helper.hook"; + + public final static String MAPPING_IMPLEMENTATION = + "mapping.implementation"; + public final static String MAPPING_DISTRIBUTION = + "mapping.distribution"; + public final static String MAPPING_JDO = + "mapping.jdo"; + +} // TopiaConst +