no message
[mir.git] / source / mircoders / storage / DatabaseContent.java
index 7725d97..fd97ca2 100755 (executable)
@@ -7,11 +7,11 @@ import java.util.*;
 
 import freemarker.template.*;
 
-import webdb.storage.*;
-import webdb.entity.*;
-import webdb.misc.*;
-
+import mir.storage.*;
 import mir.entity.*;
+import mir.misc.*;
+
+import mircoders.entity.*;
 
 /**
  * <b>this class implements the access to the content-table</b>
@@ -45,7 +45,7 @@ public class DatabaseContent extends Database implements StorageObject {
                this.theCoreTable="media";
                relationComments = new EntityRelation("id", "to_media", DatabaseComment.getInstance(), EntityRelation.TO_MANY);
                relationFeature = new EntityRelation("id", "to_feature", DatabaseFeature.getInstance(), EntityRelation.TO_ONE);
-               try {   this.theEntityClass = Class.forName("mir.entity.EntityContent"); }
+               try {   this.theEntityClass = Class.forName("mircoders.entity.EntityContent"); }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
        }