-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from ambitus/feature/password_expiration_option
Add optional Expired/Noexpired
- Loading branch information
Showing
10 changed files
with
82 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
tests/user/user_request_samples/user_set_passphrase_expired_request.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<securityrequest xmlns="http://www.ibm.com/systems/zos/saf" xmlns:racf="http://www.ibm.com/systems/zos/racf"> | ||
<user name="squidwrd" operation="set" requestid="UserRequest"> | ||
<base> | ||
<racf:phrase operation="set">********</racf:phrase> | ||
<racf:expired operation="set" /> | ||
</base> | ||
</user> | ||
</securityrequest> |
8 changes: 8 additions & 0 deletions
8
tests/user/user_request_samples/user_set_passphrase_noexpired_request.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<securityrequest xmlns="http://www.ibm.com/systems/zos/saf" xmlns:racf="http://www.ibm.com/systems/zos/racf"> | ||
<user name="squidwrd" operation="set" requestid="UserRequest"> | ||
<base> | ||
<racf:phrase operation="set">********</racf:phrase> | ||
<racf:expired operation="del" /> | ||
</base> | ||
</user> | ||
</securityrequest> |
8 changes: 8 additions & 0 deletions
8
tests/user/user_request_samples/user_set_password_expired_request.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<securityrequest xmlns="http://www.ibm.com/systems/zos/saf" xmlns:racf="http://www.ibm.com/systems/zos/racf"> | ||
<user name="squidwrd" operation="set" requestid="UserRequest"> | ||
<base> | ||
<racf:password operation="set">********</racf:password> | ||
<racf:expired operation="set" /> | ||
</base> | ||
</user> | ||
</securityrequest> |
8 changes: 8 additions & 0 deletions
8
tests/user/user_request_samples/user_set_password_noexpired_request.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<securityrequest xmlns="http://www.ibm.com/systems/zos/saf" xmlns:racf="http://www.ibm.com/systems/zos/racf"> | ||
<user name="squidwrd" operation="set" requestid="UserRequest"> | ||
<base> | ||
<racf:password operation="set">********</racf:password> | ||
<racf:expired operation="del" /> | ||
</base> | ||
</user> | ||
</securityrequest> |