UserCredentials::getSSL

Description

In BBj 11.0 and higher, this method returns if using the SSL when connecting to the BBjServices Admin server when the user credentials were obtained.

Syntax

Return Value

Method

boolean

getSSL()

Parameters

None.

Return Values

Returns TRUE (1) if using the SSL when connecting to the BBjServices Admin server when the user credentials were obtained; otherwise returns FALSE (0).

Remarks

None.

Example

rem Admin Utility Demo

 rem Use Statements
 use ::admin.bbj::Admin
 use ::admin.bbj::UserCredentials

 rem Declares
 declare Admin admin!
 declare UserCredentials userCredentials!

 rem Authenticate the user jsmith
 admin! = new Admin()
 admin!.setUser("jsmith")
 userCredentials! = admin!.getUserCredentials()
 if (userCredentials! <> null())
    print "User: " + userCredentials!.getUser()
    print "Password: " + userCredentials!.getPassword()
    print "Host: " + userCredentials!.getHost()
    print "Port: " + str(userCredentials!.getPort())
    print "SSL: " + str(userCredentials!.getSSL())
    print "Timeout: " + str(userCredentials!.getTimeout())
    end
 else
    print "Could not authenticate user"
 endif
 end 

See Also

BBj Object Syntax

Admin API

UserCredentials