Password Management - Groovy
Accounts and password may be determined and handled using a customized Groovy script. The outline of the script may match the following:
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
def change(Object[] args) {
def credential = args[0]
def passwordChangeBean = args[1]
def logger = args[2]
return true
}
def findEmail(Object[] args) {
def username = args[0]
def logger = args[1]
return "cas@example.org"
}
def findPhone(Object[] args) {
def username = args[0]
def logger = args[1]
return "1234567890"
}
def findUsername(Object[] args) {
def email = args[0]
def logger = args[1]
return "casuser"
}
def getSecurityQuestions(Object[] args) {
def username = args[0]
def logger = args[1]
return [securityQuestion1: "securityAnswer1"]
}
To see the relevant list of CAS properties, please review this guide.