X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleVideo.java;h=5344273b08f6c67b1ef0d4682a097b53e757d34a;hb=95c2e3a74f492f6f61d4dbe8bb47996f43af0627;hp=d206247c710ec46465e0efb5610c2636ab8a93e4;hpb=a459f111d85598df56c6ab711cec11632676b39c;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleVideo.java b/source/mircoders/servlet/ServletModuleVideo.java index d206247c..5344273b 100755 --- a/source/mircoders/servlet/ServletModuleVideo.java +++ b/source/mircoders/servlet/ServletModuleVideo.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,41 +32,38 @@ 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