Collection Contents Previous Next PDF

UltraLite Static Java User's Guide

Synchronization Parameters Reference

auth_parms parameter


Function 

Provides parameters to a custom user authentication script.

Access method 

String[ ] getAuthParms( )

void setAuthParms( String[ ] auth_parms )

Usage 

Set the parameters as follows:

ul_char * Params[ 3 ] = { UL_TEXT( "parm1" ), 
                          UL_TEXT( "parm2" ), 
                          UL_TEXT( "parm3" ) };
// ...
info.num_auth_parms = 3;
info.auth_parms = Params;
params = new String[ num_params ];
// set params values
UlSynchOptions opts = new UlSynchOptions;
opts.setAuthParms( params );
opts.setAuthParmsNumber( num_params );
See also 

Collection Contents Previous Next PDF