entity user caching cause of password vulnerability
authorrk <rk>
Sun, 31 Mar 2002 21:15:34 +0000 (21:15 +0000)
committerrk <rk>
Sun, 31 Mar 2002 21:15:34 +0000 (21:15 +0000)
source/mircoders/entity/EntityUsers.java

index 645e74b..8eaae37 100755 (executable)
@@ -4,7 +4,6 @@ import  java.util.*;
 
 import  mir.entity.*;
 import  mir.storage.*;
-import  mir.storage.store.*;
 
 /**
  * This class is objectmapping of database webdb_users
@@ -14,7 +13,7 @@ import  mir.storage.store.*;
  */
 
 
-public class EntityUsers extends Entity implements StorableObject
+public class EntityUsers extends Entity
 {
 
                public EntityUsers()
@@ -36,27 +35,4 @@ public class EntityUsers extends Entity implements StorableObject
                return (admin!=null&&admin.equals("1"))?true:false;
        }
 
-    /**
-   *  Method:       getStoreIdentifier
-   *  Description:  returns unique StoreIdentifer under which the Entity
-   *                is Stored. Based upon primary key and tablename.
-   *
-   *  @return       StoreIdentifier
-   */
-  public StoreIdentifier getStoreIdentifier() {
-    String id = getId();
-    if ( id!=null && theStorageObject!= null )
-     return new StoreIdentifier(this, id+"@"+theStorageObject.getTableName());
-    return null;
-  }
-
-  /**
-   *  Method:       getNotifyOnReleaseSet()
-   *  Description:  returns empty Set, GenericContainer does not implement
-   *                dependencies.
-   *
-   *  @return       null
-   */
-  public Set getNotifyOnReleaseSet() { return null; }
-
 }