AuthCallback MQXR class

AuthCallback is the sole class in package com.ibm.mq.mqxr. It specifies the interface definition that a telemetry server administrator needs when they write an AuthCallback in the MQXR server.


Class AuthCallback

java.lang.Object
	|
	└─ com.ibm.mq.mqxr.AuthCallback
Implemented interface:
javax.security.auth.callback.Callback
public class AuthCallback
extends java.lang.Object
implements javax.security.auth.callback.Callback
Allows a JAAS login module (javax.security.auth.spi.LoginModule) to access IBM MQ Server objects.


Methods

    getSSLSession
    public javax.net.ssl.SSLSession getSSLSession()
    Returns the javax.net.ssl.SSLSession associated with the client connection, or null if the client is connected using a plain text connection.

    setSSLSession
    public void setSSLSession(javax.net.ssl.SSLSession sslSession)
    The sslSession parameter is set by the server to be the sslSession associated with the client connection, or null if the client is connected using a plain text connection.


Constructor

public AuthCallback()
Parent topic: MQ Telemetry Reference


Related reference


Related information