VERIFY PASSWORD
| Obsolete function |
| This function is obsolete in AMT, it is only created to set correct response codes. |
| COBOL |
Java |
| EXEC CICS VERIFY PASSWORD |
ibmCics.verify |
Syntax
ibmCics.verify (new VerifyOptions()
.userId(<UserId>)
.password(<Password>)
[.daysLeft(<DaysLeft>)]
[.lastUseTime(<LastUseTime>)]
[.invalidCount(<InvalidCount>)]
);
Parameter(s)
<UserId>
The user ID.
<Password>
The password.
<DaysLeft>
Optional. Number of days left before the password expires.
<LastUseTime>
Optional. Timestamp of the last time the user ID was accessed.
<InvalidCount>
Optional. Number of invalid login attempts for this user.
Example(s)
| COBOL |
Java |
EXEC CICS
VERIFY PASSWORD(WS-DATA)
USERID(WS-USER)
END-EXEC.
|
ibmCics.verify(new VerifyOptions()
.userId(locDef.ws_User)
.password(locDef.ws_Data)
);
|