X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fstorage%2FDatabaseOther.java;h=dd641f927d7aaa4f33912fd531c2d346fa62b57a;hb=c9ac8fa71b679f8d967aac901bbef945c13b94c9;hp=c4c422bedeae06448d3188ea477deae88a2f849c;hpb=d63595f89aaa4b6a524dc0b4af9e0eef888f4c6b;p=mir.git diff --git a/source/mircoders/storage/DatabaseOther.java b/source/mircoders/storage/DatabaseOther.java index c4c422be..dd641f92 100755 --- a/source/mircoders/storage/DatabaseOther.java +++ b/source/mircoders/storage/DatabaseOther.java @@ -36,25 +36,11 @@ import mir.entity.Entity; import mir.log.LoggerWrapper; import mir.misc.StringUtil; import mir.storage.Database; -import mir.storage.StorageObject; -import mir.storage.StorageObjectFailure; +import mir.storage.DatabaseFailure; -/** - * - *

Title:

- *

Description:

- *

Copyright: Copyright (c) 2003

- *

Company:

- * @author not attributable - * @version 1.0 - */ - -public class DatabaseOther extends Database implements StorageObject{ +public class DatabaseOther extends Database { private static DatabaseOther instance; - // the following *has* to be sychronized cause this static method - // could get preemted and we could end up with 2 instances of DatabaseFoo.. - // see the "Singletons with needles and thread" article at JavaWorld -mh public synchronized static DatabaseOther getInstance() { if (instance == null) { instance = new DatabaseOther(); @@ -66,14 +52,11 @@ public class DatabaseOther extends Database implements StorageObject{ super(); logger = new LoggerWrapper("Database.OtherMedia"); - - hasTimestamp = true; mainTable = "other_media"; - primaryKeySequence = "media_id_seq"; - theEntityClass = mircoders.entity.EntityOther.class; + entityClass = mircoders.entity.EntityOther.class; } - public void update(Entity theEntity) throws StorageObjectFailure { + public void update(Entity theEntity) throws DatabaseFailure { String date = theEntity.getFieldValue("date"); if (date == null) { date = StringUtil.date2webdbDate(new GregorianCalendar()); @@ -83,7 +66,7 @@ public class DatabaseOther extends Database implements StorageObject{ super.update(theEntity); } - public String insert(Entity theEntity) throws StorageObjectFailure { + public String insert(Entity theEntity) throws DatabaseFailure { String date = theEntity.getFieldValue("date"); if (date == null) { date = StringUtil.date2webdbDate(new GregorianCalendar()); @@ -92,6 +75,7 @@ public class DatabaseOther extends Database implements StorageObject{ return super.insert(theEntity); } - // initialisierungen aus den statischen Tabellen - + protected String getPrimaryKeySequence() { + return "media_id_seq"; + } }