some deep down optimization
[mir.git] / source / mircoders / servlet / ServletModuleOtherMedia.java
index 23f71ea..d447c09 100755 (executable)
  * 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,18 +32,20 @@ package mircoders.servlet;
 
 import mir.log.LoggerWrapper;
 import mir.servlet.ServletModule;
-import mir.storage.StorageObjectFailure;
 import mircoders.module.ModuleUploadedMedia;
 import mircoders.storage.DatabaseOther;
 
-/*
- *
+/**
  *
- * @author br1
+ * <p>Title: </p>
+ * <p>Description: </p>
+ * <p>Copyright: Copyright (c) 2003</p>
+ * <p>Company: </p>
+ * @author the mir coders
+ * @version 1.0
  */
 
 public class ServletModuleOtherMedia extends ServletModuleUploadedMedia {
-  // Singelton / Contructor
   private static ServletModuleOtherMedia instance = new ServletModuleOtherMedia();
 
   public static ServletModule getInstance() {
@@ -53,15 +55,13 @@ public class ServletModuleOtherMedia extends ServletModuleUploadedMedia {
   private ServletModuleOtherMedia() {
     super();
     logger = new LoggerWrapper("ServletModule.OtherMedia");
+    moduleName = "OtherMedia";
 
-    templateListString = configuration.getString("ServletModule.OtherMedia.ListTemplate");
-    templateObjektString = configuration.getString("ServletModule.OtherMedia.ObjektTemplate");
-    templateConfirmString = configuration.getString("ServletModule.OtherMedia.ConfirmTemplate");
     try {
+      definition = "otherMedia";
       mainModule = new ModuleUploadedMedia(DatabaseOther.getInstance());
-      //dbRights = DatabaseRights.getInstance();
     }
-    catch (StorageObjectFailure e) {
+    catch (Throwable e) {
       logger.error("servletmodule otherMedia could not be initialized: " + e.getMessage());
     }
   }