Changeset 2679


Ignore:
Timestamp:
03/08/10 13:31:23 (2 years ago)
Author:
mswertz
Message:

Cleaned out authorization and authentication interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molgenis/3.3/src/org/molgenis/framework/security/Login.java

    r2559 r2679  
    8989         * @return readpermission 
    9090         * @throws DatabaseException  
     91         * @throws DatabaseException  
    9192         */ 
    92         public <E extends Entity> boolean canRead(Class<E> entityClass); 
     93        public <E extends Entity> boolean canRead(Class<E> entityClass) throws DatabaseException; 
    9394         
    9495        /** 
     
    9899         * @return readpermission 
    99100         * @throws DatabaseException  
     101         * @throws DatabaseException  
    100102         */ 
    101         public <E extends Entity> boolean canRead(Entity entity); 
     103        public <E extends Entity> boolean canRead(Entity entity) throws DatabaseException; 
    102104 
    103105        /** 
     
    106108         *  
    107109         * @return editpermission 
     110         * @throws DatabaseException  
    108111         */ 
    109         public <E extends Entity> boolean canWrite(Class<E> entityClass); 
     112        public <E extends Entity> boolean canWrite(Class<E> entityClass) throws DatabaseException; 
    110113 
    111114        /** 
Note: See TracChangeset for help on using the changeset viewer.