Changeset 2679
- Timestamp:
- 03/08/10 13:31:23 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molgenis/3.3/src/org/molgenis/framework/security/Login.java
r2559 r2679 89 89 * @return readpermission 90 90 * @throws DatabaseException 91 * @throws DatabaseException 91 92 */ 92 public <E extends Entity> boolean canRead(Class<E> entityClass) ;93 public <E extends Entity> boolean canRead(Class<E> entityClass) throws DatabaseException; 93 94 94 95 /** … … 98 99 * @return readpermission 99 100 * @throws DatabaseException 101 * @throws DatabaseException 100 102 */ 101 public <E extends Entity> boolean canRead(Entity entity) ;103 public <E extends Entity> boolean canRead(Entity entity) throws DatabaseException; 102 104 103 105 /** … … 106 108 * 107 109 * @return editpermission 110 * @throws DatabaseException 108 111 */ 109 public <E extends Entity> boolean canWrite(Class<E> entityClass) ;112 public <E extends Entity> boolean canWrite(Class<E> entityClass) throws DatabaseException; 110 113 111 114 /**
Note: See TracChangeset
for help on using the changeset viewer.