Authorization (ISecurity Interface) |
Returns the active server-level internal authentication policies.
Category: Internal authentication methods
Interface version: ISecurity 1.1
Syntax |
GetInternalLoginSitePolicies(siteMinPasswordLength,siteIsDigitRequired, siteIsMixedCaseRequired,siteSizeHistoryList,sitePasswordChangeDelayInMinutes, siteExpirationDays,siteNumFailuresForLockout,siteLockoutInMinutes, siteDaysToSuspension);
Parameters |
Details |
Parameters are holders for receiving output values, and all parameters are required. That is, the caller must specify all parameters to get values back. A caller cannot leave any variables empty to indicate that he or she doesn't want a value for that parameter.
Exceptions Thrown |
The GetInternalLoginSitePolicies method does not return any exceptions.
Examples |
The following is a Java example of a GetInternalLoginSitePolicies method call:
IntHolder siteMinPasswordLength = new IntHolder(); BooleanHolder siteIsDigitRequired = new BooleanHolder(); BooleanHolder siteIsMixedCaseRequired = new BooleanHolder(); IntHolder siteSizeHistoryList = new IntHolder(); IntHolder sitePasswordChangeDelayInMinutes = new IntHolder(); IntHolder siteExpirationDays = new IntHolder(); IntHolder siteNumFailuresForLockout = new IntHolder(); IntHolder siteLockoutInMinutes = new IntHolder(); IntHolder siteDaysToSuspension = new IntHolder(); iSecurity.GetInternalLoginSitePolicies( siteMinPasswordLength, siteIsDigitRequired, siteIsMixedCaseRequired, siteSizeHistoryList, sitePasswordChangeDelayInMinutes, siteExpirationDays, siteNumFailuresForLockout, siteLockoutInMinutes, siteDaysToSuspension );
Related Methods |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.