X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleVideo.java;h=5344273b08f6c67b1ef0d4682a097b53e757d34a;hb=95c2e3a74f492f6f61d4dbe8bb47996f43af0627;hp=b8296b5a00092275f47e0bef0f073b691e62f498;hpb=d90c1bbdd5e1823253436f24dce80de4f0abbfcb;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleVideo.java b/source/mircoders/servlet/ServletModuleVideo.java index b8296b5a..5344273b 100755 --- a/source/mircoders/servlet/ServletModuleVideo.java +++ b/source/mircoders/servlet/ServletModuleVideo.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2001, 2002 The Mir-coders group + * Copyright (C) 2001, 2002 The Mir-coders group * * This file is part of Mir. * @@ -18,56 +18,52 @@ * 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 the com.oreilly.servlet library, 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. + * 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. */ package mircoders.servlet; import mir.log.LoggerWrapper; import mir.servlet.ServletModule; -import mir.storage.StorageObjectFailure; import mircoders.module.ModuleUploadedMedia; import mircoders.storage.DatabaseVideo; -/* - * +/** * - * @author br1 + *

Title:

+ *

Description:

+ *

Copyright: Copyright (c) 2003

+ *

Company:

+ * @author not attributable + * @version 1.0 */ public class ServletModuleVideo extends ServletModuleUploadedMedia { - - //private static DatabaseRights dbRights; - - // Singelton / Contructor private static ServletModuleVideo instance = new ServletModuleVideo(); public static ServletModule getInstance() { return instance; } - private ServletModuleVideo() { super(); logger = new LoggerWrapper("ServletModule.Video"); - templateListString = configuration.getString("ServletModule.Video.ListTemplate"); - templateObjektString = configuration.getString("ServletModule.Video.ObjektTemplate"); - templateConfirmString = configuration.getString("ServletModule.Video.ConfirmTemplate"); + + moduleName = "Video"; + try { + definition = "video"; mainModule = new ModuleUploadedMedia(DatabaseVideo.getInstance()); - //dbRights = DatabaseRights.getInstance(); } - catch (StorageObjectFailure e) { + catch (Throwable e) { logger.error("servletmodule video could not be initialized: " + e.getMessage()); } } -} - +} \ No newline at end of file