X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleTopics.java;h=441f33b17a4b2d6dfa5452eecd043f49d73d670c;hb=0d512e810fc3838b6787c2a866864481d79c93ca;hp=d2a39161a1a2c02aa2b04b4834bbbc7903145221;hpb=a459f111d85598df56c6ab711cec11632676b39c;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleTopics.java b/source/mircoders/servlet/ServletModuleTopics.java index d2a39161..441f33b1 100755 --- a/source/mircoders/servlet/ServletModuleTopics.java +++ b/source/mircoders/servlet/ServletModuleTopics.java @@ -18,13 +18,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * In addition, as a special exception, The Mir-coders gives permission to link - * the code of this program with any library licensed under the Apache Software License, - * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library - * (or with modified versions of the above that use the same license as the above), - * and distribute linked combinations including the two. You must obey the - * GNU General Public License in all respects for all of the code used other than - * the above mentioned libraries. If you modify this file, you may extend this - * exception to your version of the file, but you are not obligated to do so. + * the code of this program with any library licensed under the Apache Software License, + * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library + * (or with modified versions of the above that use the same license as the above), + * and distribute linked combinations including the two. You must obey the + * GNU General Public License in all respects for all of the code used other than + * the above mentioned libraries. If you modify this file, you may extend this + * exception to your version of the file, but you are not obligated to do so. * If you do not wish to do so, delete this exception statement from your version. */ @@ -32,21 +32,22 @@ package mircoders.servlet; import mir.log.LoggerWrapper; import mir.servlet.ServletModule; -import mir.storage.StorageObjectFailure; +import mircoders.global.MirGlobal; import mircoders.module.ModuleTopics; import mircoders.storage.DatabaseTopics; -/* - * ServletModuleTopics - * +/** * - * - * @author RK + *

Title:

+ *

Description:

+ *

Copyright: Copyright (c) 2003

+ *

Company:

+ * @author not attributable + * @version 1.0 */ public class ServletModuleTopics extends ServletModule { -// Singelton / Constructor private static ServletModuleTopics instance = new ServletModuleTopics(); public static ServletModule getInstance() { return instance; } @@ -54,14 +55,12 @@ public class ServletModuleTopics extends ServletModule super(); logger = new LoggerWrapper("ServletModule.Topics"); - templateListString = configuration.getString("ServletModule.Themen.ListTemplate"); - templateObjektString = configuration.getString("ServletModule.Themen.ObjektTemplate"); - templateConfirmString = configuration.getString("ServletModule.Themen.ConfirmTemplate"); - try { + model = MirGlobal.localizer().dataModel().adapterModel(); + definition = "topic"; mainModule = new ModuleTopics(DatabaseTopics.getInstance()); } - catch (StorageObjectFailure e) { + catch (Throwable e) { logger.error("Initialization of ServletModuleTopics failed!: " + e.getMessage()); } }