Package com.qfs.desc
Interface ITableSecurity
- All Known Implementing Classes:
TableSecurity
public interface ITableSecurity
Security for the tables of the database.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the permissions for each table.booleanReturns whether adding new records to the table is allowed.booleanReturns whether deleting records of the table is allowed.
-
Method Details
-
getTablePermissions
ITablePermissions getTablePermissions()Returns the permissions for each table. -
isAddingNewRecordsAllowed
boolean isAddingNewRecordsAllowed()Returns whether adding new records to the table is allowed. -
isDeletingRecordsAllowed
boolean isDeletingRecordsAllowed()Returns whether deleting records of the table is allowed.
-