Uses of Class
org.linuxforhealth.fhir.database.utils.model.Privilege
-
-
Uses of Privilege in org.linuxforhealth.fhir.database.utils.api
Method parameters in org.linuxforhealth.fhir.database.utils.api with type arguments of type Privilege Modifier and Type Method Description void
IDatabaseAdapter. grantFunctionPrivileges(java.lang.String schemaName, java.lang.String functionName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
grants permissions on a given functionvoid
ISchemaAdapter. grantFunctionPrivileges(java.lang.String schemaName, java.lang.String functionName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
grants permissions on a given functionvoid
IDatabaseAdapter. grantObjectPrivileges(java.lang.String schemaName, java.lang.String tableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
Grant the list of privileges on the named object to the user.void
ISchemaAdapter. grantObjectPrivileges(java.lang.String schemaName, java.lang.String tableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
Grant the list of privileges on the named object to the user.void
IDatabaseAdapter. grantProcedurePrivileges(java.lang.String schemaName, java.lang.String procedureName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
Grant the collection of privileges on the named procedure to the uservoid
ISchemaAdapter. grantProcedurePrivileges(java.lang.String schemaName, java.lang.String procedureName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
Grant the collection of privileges on the named procedure to the uservoid
IDatabaseAdapter. grantSequencePrivileges(java.lang.String schemaName, java.lang.String objectName, java.util.Collection<Privilege> group, java.lang.String toUser)
Grant the collection of privileges on the named variable to the uservoid
ISchemaAdapter. grantSequencePrivileges(java.lang.String schemaName, java.lang.String objectName, java.util.Collection<Privilege> group, java.lang.String toUser)
Grant the collection of privileges on the named variable to the uservoid
IDatabaseAdapter. grantVariablePrivileges(java.lang.String schemaName, java.lang.String variableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
Grant the collection of privileges on the named variable to the uservoid
ISchemaAdapter. grantVariablePrivileges(java.lang.String schemaName, java.lang.String variableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
Grant the collection of privileges on the named variable to the user -
Uses of Privilege in org.linuxforhealth.fhir.database.utils.common
Method parameters in org.linuxforhealth.fhir.database.utils.common with type arguments of type Privilege Modifier and Type Method Description void
CommonDatabaseAdapter. grantFunctionPrivileges(java.lang.String schemaName, java.lang.String functionName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
PlainSchemaAdapter. grantFunctionPrivileges(java.lang.String schemaName, java.lang.String functionName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
CommonDatabaseAdapter. grantObjectPrivileges(java.lang.String schemaName, java.lang.String tableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
PlainSchemaAdapter. grantObjectPrivileges(java.lang.String schemaName, java.lang.String tableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
CommonDatabaseAdapter. grantProcedurePrivileges(java.lang.String schemaName, java.lang.String procedureName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
PlainSchemaAdapter. grantProcedurePrivileges(java.lang.String schemaName, java.lang.String procedureName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
CommonDatabaseAdapter. grantSequencePrivileges(java.lang.String schemaName, java.lang.String variableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
PlainSchemaAdapter. grantSequencePrivileges(java.lang.String schemaName, java.lang.String objectName, java.util.Collection<Privilege> group, java.lang.String toUser)
void
CommonDatabaseAdapter. grantVariablePrivileges(java.lang.String schemaName, java.lang.String variableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
void
PlainSchemaAdapter. grantVariablePrivileges(java.lang.String schemaName, java.lang.String variableName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
-
Uses of Privilege in org.linuxforhealth.fhir.database.utils.model
Methods in org.linuxforhealth.fhir.database.utils.model that return Privilege Modifier and Type Method Description static Privilege
Privilege. valueOf(java.lang.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 org.linuxforhealth.fhir.database.utils.model with parameters of type Privilege Modifier and Type Method Description void
BaseObject. addPrivilege(java.lang.String groupName, Privilege p)
Add the privilege to the named privilege groupTable.Builder
Table.Builder. addPrivilege(java.lang.String groupName, Privilege p)
View.Builder
View.Builder. addPrivilege(java.lang.String groupName, Privilege p)
Method parameters in org.linuxforhealth.fhir.database.utils.model with type arguments of type Privilege Modifier and Type Method Description protected void
AlterSequenceStartWith. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
AlterTableAddColumn. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
AlterTableIdentityCache. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
BaseObject. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.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(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
ProcedureDef. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
Sequence. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
Table. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
protected void
View. grantGroupPrivileges(ISchemaAdapter target, java.util.Set<Privilege> group, java.lang.String toUser)
Constructors in org.linuxforhealth.fhir.database.utils.model with parameters of type Privilege Constructor Description GroupPrivilege(java.lang.String groupName, Privilege p)
-
Uses of Privilege in org.linuxforhealth.fhir.database.utils.postgres
Method parameters in org.linuxforhealth.fhir.database.utils.postgres with type arguments of type Privilege Modifier and Type Method Description void
PostgresAdapter. grantProcedurePrivileges(java.lang.String schemaName, java.lang.String procedureName, java.util.Collection<Privilege> privileges, java.lang.String toUser)
-