org.firebirdsql.management
Interface UserManager

All Superinterfaces:
ServiceManager
All Known Implementing Classes:
FBUserManager

public interface UserManager
extends ServiceManager

The base Firebird Service API functionality.

Author:
Steven Jardine

Method Summary
 void add(User user)
          Add a user to the Firebird Security Database.
 void delete(User user)
          Delete a user to the Firebird Security Database.
 void dropAdminRoleMapping()
          Drops AUTO ADMIN MAPPING from role RDB$ADMIN in security database
 java.util.Map getUsers()
          Return all valid users in the Firebird Security Database.
 void setAdminRoleMapping()
          Sets AUTO ADMIN MAPPING for role RDB$ADMIN in security database
 void setSecurityDatabase(java.lang.String securityDatabase)
          Sets the security database and therefore overrides the per default used security database (e.g. security2.fdb) Supported since Firebird 2.1
 void update(User user)
          Update a user to the Firebird Security Database.
 
Methods inherited from interface org.firebirdsql.management.ServiceManager
getDatabase, getHost, getLogger, getPassword, getPort, getUser, setDatabase, setHost, setLogger, setPassword, setPort, setUser
 

Method Detail

add

void add(User user)
         throws java.sql.SQLException,
                java.io.IOException
Add a user to the Firebird Security Database.

Parameters:
user - to the Firebird Security Database.
Throws:
java.sql.SQLException
java.io.IOException

delete

void delete(User user)
            throws java.sql.SQLException,
                   java.io.IOException
Delete a user to the Firebird Security Database.

Parameters:
user - to the Firebird Security Database.
Throws:
java.sql.SQLException
java.io.IOException

update

void update(User user)
            throws java.sql.SQLException,
                   java.io.IOException
Update a user to the Firebird Security Database.

Parameters:
user - to the Firebird Security Database.
Throws:
java.sql.SQLException
java.io.IOException

getUsers

java.util.Map getUsers()
                       throws java.sql.SQLException,
                              java.io.IOException
Return all valid users in the Firebird Security Database.

Returns:
all valid users in the Firebird Security Database.
Throws:
java.sql.SQLException
java.io.IOException

setSecurityDatabase

void setSecurityDatabase(java.lang.String securityDatabase)
Sets the security database and therefore overrides the per default used security database (e.g. security2.fdb) Supported since Firebird 2.1

Parameters:
securityDatabase - name/path of securityDatabase

setAdminRoleMapping

void setAdminRoleMapping()
                         throws java.sql.SQLException,
                                java.io.IOException
Sets AUTO ADMIN MAPPING for role RDB$ADMIN in security database

Throws:
java.sql.SQLException
java.io.IOException

dropAdminRoleMapping

void dropAdminRoleMapping()
                          throws java.sql.SQLException,
                                 java.io.IOException
Drops AUTO ADMIN MAPPING from role RDB$ADMIN in security database

Throws:
java.sql.SQLException
java.io.IOException


Copyright © 2001-2019 Jaybird (Firebird JDBC/JCA) team. All rights reserved.