fixx
authoridfx <idfx>
Wed, 29 Aug 2001 15:04:19 +0000 (15:04 +0000)
committeridfx <idfx>
Wed, 29 Aug 2001 15:04:19 +0000 (15:04 +0000)
source/mircoders/servlet/ServletModuleContent.java
source/mircoders/storage/DatabaseContentToTopics.java
source/mircoders/storage/DatabaseFeature.java
source/mircoders/storage/DatabaseGroups.java
source/mircoders/storage/DatabaseImages.java
source/mircoders/storage/DatabaseTopics.java
source/mircoders/storage/DatabaseVideos.java

index 658206a..f6c3a82 100755 (executable)
@@ -11,14 +11,15 @@ import javax.servlet.http.*;
 import freemarker.template.*;
 
 import mir.servlet.*;
-import mircoders.module.*;
+import mir.module.*;
 import mir.misc.*;
-import mircoders.entity.*;
 import mir.storage.*;
-
 import mir.entity.*;
+
 import mircoders.storage.*;
-import mir.module.*;
+import mircoders.module.*;
+import mircoders.entity.*;
+
 
 /*
  *  ServletModuleContent -
index 34110f7..d752759 100755 (executable)
@@ -38,11 +38,13 @@ public class DatabaseContentToTopics extends Database implements StorageObject{
                super();
                this.hasTimestamp = false;
                this.theTable="content_x_topic";
-               try {
+               /**
+    try {
                        this.theEntityClass = Class.forName("mircoders.entity.EntityGruppen");
                } catch (Exception e) {
                        throw new StorageObjectException(e.toString());
                }
+    */
        }
 
 
index 6c4eff7..43293eb 100755 (executable)
@@ -37,7 +37,7 @@ public class DatabaseFeature extends Database implements StorageObject{
                this.theTable="feature";
 
                try {
-                               this.theEntityClass = Class.forName("mir.entity.EntityFeature");
+                               this.theEntityClass = Class.forName("mircoders.entity.EntityFeature");
                }
                catch (Exception e) {
                                throw new StorageObjectException(e.toString());
index 9d69b21..0b5762d 100755 (executable)
@@ -36,7 +36,7 @@ public class DatabaseGroups extends Database implements StorageObject{
                this.cache = new HashMap();
                this.theTable="creator";
                try {
-                       this.theEntityClass = Class.forName("mir.entity.EntityGruppen");
+                       this.theEntityClass = Class.forName("mircoders.entity.EntityGruppen");
                }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
        }
index b14b0c0..1a5df1c 100755 (executable)
@@ -38,7 +38,7 @@ public class DatabaseImages extends Database implements StorageObject{
                this.theTable="images";
                this.theCoreTable="media";
                try {
-                       this.theEntityClass = Class.forName("mir.entity.EntityImage");
+                       this.theEntityClass = Class.forName("mircoders.entity.EntityImage");
                }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
        }
index 5814b9b..5804b88 100755 (executable)
@@ -36,7 +36,7 @@ public class DatabaseTopics extends Database implements StorageObject{
                        this.hasTimestamp = false;
                        this.theTable="topic";
                        try {
-               this.theEntityClass = Class.forName("mir.entity.EntityTopics");
+               this.theEntityClass = Class.forName("mircoders.entity.EntityTopics");
                        }
                        catch (Exception e) {
                throw new StorageObjectException(e.toString());
index 29d4662..037de58 100755 (executable)
@@ -38,7 +38,7 @@ public class DatabaseVideos extends Database implements StorageObject{
                this.theTable="videos";
                this.theCoreTable="media";
                try {
-                       this.theEntityClass = Class.forName("mir.entity.EntityVideo");
+                       this.theEntityClass = Class.forName("mircoders.entity.EntityVideo");
                }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
        }