Uses of Class
com.ibm.fhir.database.utils.model.Privilege
-
Packages that use Privilege Package Description com.ibm.fhir.database.utils.api com.ibm.fhir.database.utils.common com.ibm.fhir.database.utils.model com.ibm.fhir.database.utils.postgresql -
-
Uses of Privilege in com.ibm.fhir.database.utils.api
Method parameters in com.ibm.fhir.database.utils.api with type arguments of type Privilege Modifier and Type Method Description void
IDatabaseAdapter. grantFunctionPrivileges(String schemaName, String functionName, Collection<Privilege> privileges, String toUser)
grants permissions on a given functionvoid
IDatabaseAdapter. grantObjectPrivileges(String schemaName, String tableName, Collection<Privilege> privileges, String toUser)
Grant the list of privileges on the named object to the user.void
IDatabaseAdapter. grantProcedurePrivileges(String schemaName, String procedureName, Collection<Privilege> privileges, String toUser)
Grant the collection of privileges on the named procedure to the uservoid
IDatabaseAdapter. grantSequencePrivileges(String schemaName, String objectName, Collection<Privilege> group, String toUser)
Grant the collection of privileges on the named variable to the uservoid
IDatabaseAdapter. grantVariablePrivileges(String schemaName, String variableName, Collection<Privilege> privileges, String toUser)
Grant the collection of privileges on the named variable to the user -
Uses of Privilege in com.ibm.fhir.database.utils.common
Method parameters in com.ibm.fhir.database.utils.common with type arguments of type Privilege Modifier and Type Method Description void
CommonDatabaseAdapter. grantFunctionPrivileges(String schemaName, String functionName, Collection<Privilege> privileges, String toUser)
void
CommonDatabaseAdapter. grantObjectPrivileges(String schemaName, String tableName, Collection<Privilege> privileges, String toUser)
void
CommonDatabaseAdapter. grantProcedurePrivileges(String schemaName, String procedureName, Collection<Privilege> privileges, String toUser)
void
CommonDatabaseAdapter. grantSequencePrivileges(String schemaName, String variableName, Collection<Privilege> privileges, String toUser)
void
CommonDatabaseAdapter. grantVariablePrivileges(String schemaName, String variableName, Collection<Privilege> privileges, String toUser)
-
Uses of Privilege in com.ibm.fhir.database.utils.model
Methods in com.ibm.fhir.database.utils.model that return Privilege Modifier and Type Method Description static Privilege
Privilege. valueOf(String name)
Returns the enum constant of this type with the specified name.static Privilege[]
Privilege. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.ibm.fhir.database.utils.model with parameters of type Privilege Modifier and Type Method Description void
BaseObject. addPrivilege(String groupName, Privilege p)
Add the privilege to the named privilege groupTable.Builder
Table.Builder. addPrivilege(String groupName, Privilege p)
Method parameters in com.ibm.fhir.database.utils.model with type arguments of type Privilege Modifier and Type Method Description protected void
AlterSequenceStartWith. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
protected void
AlterTableIdentityCache. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
protected void
BaseObject. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
Internal method which can be override by different object types which may need to call a different grant method on the adapterprotected void
FunctionDef. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
protected void
ProcedureDef. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
protected void
Sequence. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
protected void
SessionVariableDef. grantGroupPrivileges(IDatabaseAdapter target, Set<Privilege> group, String toUser)
Constructors in com.ibm.fhir.database.utils.model with parameters of type Privilege Constructor Description GroupPrivilege(String groupName, Privilege p)
-
Uses of Privilege in com.ibm.fhir.database.utils.postgresql
Method parameters in com.ibm.fhir.database.utils.postgresql with type arguments of type Privilege Modifier and Type Method Description void
PostgreSqlAdapter. grantProcedurePrivileges(String schemaName, String procedureName, Collection<Privilege> privileges, String toUser)
-