/* * =========================================================================== * Code disclaimer information * This document contains programming examples. * * IBM grants you a nonexclusive copyright license to use all * programming code examples from which you can generate similar function * tailored to your own specific needs. * * All sample code is provided by IBM for illustrative purposes only. These * examples have not been thoroughly tested under all conditions. IBM, * therefore, cannot guarantee or imply reliability, serviceability, or * function of these programs. * * All programs contained herein are provided to you "AS IS" without any * warranties of any kind. The implied warranties of non-infringement, * merchantability and fitness for a particular purpose are expressly disclaimed. * =========================================================================== */ // Sample configuration to access the iSeries server JAAS implementation classes shipped with the IBM Toolbox for Java (5769JC1) Licensed Program Product. // Default ProfileTokenCredential values are - // credentialType = com.ibm.as400.security.auth.ProfileTokenCredential // credentialIsPrivate = true // credentialIsReusable = false // credentialIsRenewable = false // credentialTimeoutInterval = "3600" // principalType = com.ibm.as400.security.auth.UserProfilePrincipal; "AS400ToolboxApp" { com.ibm.as400.security.auth.login.BasicAuthenticationLoginModule required credentialType = com.ibm.as400.security.auth.ProfileTokenCredential credentialIsReusable = true credentialIsRenewable = false credentialTimeoutInterval = "3600" principalType = com.ibm.as400.security.auth.UserProfilePrincipal; };