-
Notifications
You must be signed in to change notification settings - Fork 1
/
adaf_standard_attributes.alfa
82 lines (74 loc) · 2.04 KB
/
adaf_standard_attributes.alfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* ADAF MD standard attributes.
*/
namespace System {
/*
* Name of the table to protect.
*/
attribute table_name {
id = "http://axiomatics.com/sql/filter/table_name"
type = string
category = resourceCat
}
/*
* Schema of the table to protect.
*/
attribute table_schema {
id = "http://axiomatics.com/sql/filter/table_schema"
type = string
category = resourceCat
}
/*
* Column in the protected table that is being accessed.
*/
attribute column_name {
id = "http://axiomatics.com/sql/filter/column_name"
type = string
category = resourceCat
}
/*
* Identity of the user that requests the execution of a
* SQL statement against the database.
*/
attribute subject_id {
id = "urn:oasis:names:tc:xacml:1.0:subject:subject-id"
category = subjectCat
type = string
}
/*
* Action about to be performed on the protected table or column.
* Possible values are: "SELECT", "INSERT", "UPDATE", "DELETE".
*/
attribute action_id {
id = "urn:oasis:names:tc:xacml:1.0:action:action-id"
type = string
category = actionCat
}
/*
* Current time at the moment the database is accessed,
* measured by the SQL Filter Server.
*/
attribute currentTime {
id = "urn:oasis:names:tc:xacml:1.0:environment:current-time"
type = time
category = environmentCat
}
/*
* Current date at the moment the database is accessed,
* measured by the SQL Filter Server.
*/
attribute currentDate {
id = "urn:oasis:names:tc:xacml:1.0:environment:current-date"
type = date
category = environmentCat
}
/*
* Current date and time at the moment the database is accessed,
* measured by the SQL Filter Server.
*/
attribute currentDateTime {
id = "urn:oasis:names:tc:xacml:1.0:environment:current-dateTime"
type = dateTime
category = environmentCat
}
}