Deprecated API
Contents
-
Deprecated InterfacesInterfaceDescriptionuse
CMQBCinsteaduseCMQCinsteaduseCMQCFCinsteaduseCMQPSCinsteaduseCMQXCinsteaduseCMQZCinsteaduseCMQBCinsteaduseCMQCinstead.useCMQCFCinsteaduseCMQPSCinsteaduseCMQXCinsteaduseCMQZCinsteaduseCMQBCinsteaduseCMQCinsteaduseCMQCFCinsteaduseCMQPSCinsteaduseCMQXCinsteaduseCMQZCinsteadusePCFContentinstead.
-
Deprecated ClassesClassDescriptionuse
MQCFBFinstead.struct tagMQCFBF { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG Operator; // Operator identifier MQLONG FilterValueLength; // Filter value length MQBYTE FilterValue[1]; // Filter value -- first byte };useMQCFBSinstead.struct tagMQCFBS { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG StringLength; // Length of string MQBYTE String[1]; // String value -- first byte };useMQCFGRinstead.struct tagMQCFGR { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG ParameterCount; // Count of group parameter structures };useMQCFHinstead.struct tagMQCFH { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Version; // Structure version number MQLONG Command; // Command identifier MQLONG MsgSeqNumber; // Message sequence number MQLONG Control; // Control options MQLONG CompCode; // Completion code MQLONG Reason; // Reason code qualifying completion code MQLONG ParameterCount; // Count of parameter structures };useMQCFIFinstead.struct tagMQCFIF { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG Operator; // Operator identifier MQLONG FilterValue; // Filter value };useMQCFILinstead.struct tagMQCFIL { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG Count; // Count of parameter values MQLONG Values[1]; // Parameter values -- first element };useMQCFIL64instead.struct tagMQCFIL64 { MQLONG Type; /* Structure type MQLONG StrucLength; /* Structure length MQLONG Parameter; /* Parameter identifier MQLONG Count; /* Count of parameter values MQINT64 Values[1]; /* Parameter values -- first element };useMQCFINinstead.struct tagMQCFIN { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG Value; // Parameter value };useMQCFIN64instead.struct tagMQCFIN64 { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG Reserved; // Reserved MQINT64 Value; // Parameter value };useMQCFSFinstead.struct tagMQCFSF { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG Operator; // Operator identifier MQLONG CodedCharSetId; // Coded character set identifier MQLONG FilterValueLength; // Filter value length MQCHAR FilterValue[1]; // Filter value -- first character };useMQCFSLinstead.struct tagMQCFSL { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG CodedCharSetId; // Coded character set identifier MQLONG Count; // Count of parameter values MQLONG StringLength; // Length of one string MQCHAR Strings[1]; // String values -- first character };useMQCFSTinstead.struct tagMQCFST { MQLONG Type; // Structure type MQLONG StrucLength; // Structure length MQLONG Parameter; // Parameter identifier MQLONG CodedCharSetId; // Coded character set identifier MQLONG StringLength; // Length of string MQCHAR String[1]; // String value -- first character };usePCFAgentinstead.PCFAgent agent = new PCFAgent("localhost", 1414, "CLIENT"); MQMessage[] responses; PCFParameter[] parameters = {new MQCFST(CMQC.MQCA_Q_NAME, "*"), new MQCFIN(CMQC.MQIA_Q_TYPE, MQC.MQQT_LOCAL)}; MQCFH cfh; MQCFSL cfsl; responses = agent.send(CMQCFC.MQCMD_INQUIRE_Q_NAMES, parameters); cfh = new MQCFH(responses[0]); if (cfh.reason == 0) { cfsl = new MQCFSL(responses[0]); for (int i = 0; i < cfsl.strings.length; i++) { System.out.println("Queue: " + cfsl.strings[i]); } } else { throw new MQException(cfh.compCode, cfh.reason, agent); }usePCFFilterParameterinstead.usePCFHeaderinstead.usePCFHeaderFactoryinstead.usePCFMessageinstead.usePCFMessageAgentinstead. The following example uses a PCFMessageAgent to obtain the list of local queues on the queue manager.import com.ibm.mq.pcf.*; ... try { PCFMessageAgent agent = new PCFMessageAgent ("localhost", 1414, "CLIENT"); PCFMessage request = new PCFMessage (CMQCFC.MQCMD_INQUIRE_Q_NAMES); request.addParameter (CMQC.MQCA_Q_NAME, "*"); request.addParameter (CMQC.MQIA_Q_TYPE, MQC.MQQT_LOCAL); PCFMessage [] responses = agent.send (request); String [] names = (String []) responses [0].getParameterValue (CMQCFC.MQCACF_Q_NAMES); for (int i = 0; i < names.length; i++) { System.out.println ("Queue: " + names [i]); } } catch (PCFException pcfe) { System.err.println ("PCF error: " + pcfe); } catch (MQException mqe) { System.err.println (mqe); } catch (IOException ioe) { System.err.println (ioe); }usePCFParameterinstead.
-
Deprecated Exception Classes
-
Deprecated FieldsFieldDescriptionUse CMQCFC.MQOPMODE_COMPAT insteadUse CMQCFC.MQOPMODE_NEW_FUNCTION insteadIBM MQ Java environment key for defining a channel receive exit. The corresponding value must be an Object that implements
com.ibm.mq.MQReceiveExit. This property overridescom.ibm.mq.MQEnvironment.receiveExit.IBM MQ Java environment key for defining a channel receive exit user data.IBM MQ Java environment key for defining a channel security exit. The corresponding value must be an Object that implementscom.ibm.mq.MQSecurityExit. This property overridescom.ibm.mq.MQEnvironment.securityExit.IBM MQ Java environment key for defining a channel security exit user data.IBM MQ Java environment key for defining a channel send exit. The corresponding value must be an Object that implementscom.ibm.mq.MQSendExit. This property overridescom.ibm.mq.MQEnvironment.sendExit.IBM MQ Java environment key for defining a channel send exit user data.use THREAD_AFFINITY_PROPERTY insteaduseMQDH.getStrucLength()to get the length of the structureUse getReplyQueueName instead.Since WMQ 7.0.0.0, replaced byCMQC.MQ_ACCOUNTING_TOKEN_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_APPL_IDENTITY_DATA_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_APPL_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_APPL_ORIGIN_DATA_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_CHANNEL_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_CONN_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_CONN_TAG_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_CORREL_ID_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_EXIT_DATA_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_FORMAT_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_GROUP_ID_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_MSG_HEADER_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_MSG_ID_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_MSG_TOKEN_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_NAMELIST_DESC_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_NAMELIST_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PASSWORD_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PROCESS_APPL_ID_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PROCESS_DESC_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PROCESS_ENV_DATA_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PROCESS_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PROCESS_USER_DATA_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_PUT_APPL_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_Q_DESC_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_Q_MGR_DESC_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_Q_MGR_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_Q_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_QSG_NAME_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_SECURITY_ID_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_STORAGE_CLASS_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_TRIGGER_DATA_LENGTHSince WMQ 7.0.0.0, replaced byCMQC.MQ_USER_ID_LENGTHSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_ACCEPT_TRUNCATED_MSGSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_BROWSE_FIRSTSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_BROWSE_MSG_UNDER_CURSORSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_BROWSE_NEXTSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_CONVERTSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_FAIL_IF_QUIESCINGSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_LOCKSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_MSG_UNDER_CURSORSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_NO_SYNCPOINTSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_NO_WAITSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_NONESince WMQ 7.0.0.0, replaced byCMQC.MQGMO_SYNCPOINTSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_UNLOCKSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQGMO_WAITSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstants- use the value fromMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byCMQC.MQRO_COASince WMQ 7.0.0.0, replaced byCMQC.MQRO_COA_WITH_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_COA_WITH_FULL_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_CODSince WMQ 7.0.0.0, replaced byCMQC.MQRO_COD_WITH_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_COD_WITH_FULL_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_COPY_MSG_ID_TO_CORREL_IDSince WMQ 7.0.0.0, replaced byCMQC.MQRO_DEAD_LETTER_QSince WMQ 7.0.0.0, replaced byCMQC.MQRO_DISCARD_MSGSince WMQ 7.0.0.0, replaced byCMQC.MQRO_EXCEPTIONSince WMQ 7.0.0.0, replaced byCMQC.MQRO_EXCEPTION_WITH_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_EXCEPTION_WITH_FULL_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_EXPIRATIONSince WMQ 7.0.0.0, replaced byCMQC.MQRO_EXPIRATION_WITH_DATASince WMQ 7.0.0.0, replaced byCMQC.MQRO_EXPIRATION_WITH_FULL_DATASince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQRO_NEW_MSG_IDSince WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQRO_PASS_CORREL_IDSince WMQ 7.0.0.0, replaced byCMQC.MQRO_PASS_DISCARD_AND_EXPIRYSince WMQ 7.0.0.0, replaced byCMQC.MQRO_PASS_MSG_IDSince WMQ 7.0.0.0Since WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byCMQC.MQWI_UNLIMITEDSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsSince WMQ 7.0.0.0, replaced byMQConstantsIBM MQ Java environment key for defining a channel receive exit. The corresponding value must be an Object that implementscom.ibm.mq.MQReceiveExit. This property overridesMQEnvironment.receiveExit.IBM MQ Java environment key for defining a channel receive exit user data.IBM MQ Java environment key for defining a channel security exit. The corresponding value must be an Object that implementscom.ibm.mq.MQSecurityExitThis property overridesMQEnvironment.securityExit.IBM MQ Java environment key for defining a channel security exit user data.IBM MQ Java environment key for defining a channel send exit. The corresponding value must be an Object that implementscom.ibm.mq.MQSendExit. This property overridesMQEnvironment.sendExit.IBM MQ Java environment key for defining a channel send exit user data.useMQConstants.MQXCC_CLOSE_CHANNELinstead.useMQConstants.MQXCC_OKinstead.useMQConstants.MQXCC_SEND_AND_REQUEST_SEC_MSGinstead.useMQConstants.MQXCC_SEND_SEC_MSGinstead.useMQConstants.MQXCC_SUPPRESS_EXITinstead.useMQConstants.MQXCC_SUPPRESS_FUNCTIONinstead.useMQConstants.MQXR_INITinstead.useMQConstants.MQXR_INTI_SECinstead.useMQConstants.MQXR_SEC_MSGinstead.useMQConstants.MQXR_TERMinstead.useMQConstants.MQXR_XMITinstead.useMQConstants.MQXT_CHANNEL_RCV_EXITinstead.useMQConstants.MQXT_CHANNEL_SEC_EXITinstead.useMQConstants.MQXT_CHANNEL_SEND_EXITinstead.The receive exit used when receiving messages from a queue manager. It allows you to examine, and possibly alter, data and is normally used in conjunction with a corresponding send exit at the queue manager.If you want to provide your own receive exit, define a class that implements the MQReceiveExit interface, and assign receiveExit to an instance of that class.
If you set this field to null no receive exit is called.
The security exit used when connecting to a queue manager. It allows you to customise the security flows that occur when an attempt is made to connect to a queue manager.If you want to provide your own security exit, define a class that implements the MQSecurityExit interface and assign securityExit to an instance of that class.
If you set this field to null no security exit is called.
The send exit used when sending messages to a queue manager. It allows you to examine, and possibly alter, data and is normally used in conjunction with a corresponding receive exit at the queue manager.If you want to provide your own send exit, define a class that implements the MQSendExit interface, and assign sendExit to an instance of that class.
If you set this field to null no send exit is called.
use MQConstants.MQCC_FAILED insteaduse MQConstants.MQCC_OK insteaduse MQConstants.MQCC_UNKNOWN insteaduse MQConstants.MQCC_WARNING insteaduse MQConstants.MQRC_ADAPTER_CONN_LOAD_ERROR insteaduse MQConstants.MQRC_ADAPTER_CONV_LOAD_ERROR insteaduse MQConstants.MQRC_ADAPTER_DEFS_ERROR insteaduse MQConstants.MQRC_ADAPTER_DEFS_LOAD_ERROR insteaduse MQConstants.MQRC_ADAPTER_DISC_LOAD_ERROR insteaduse MQConstants.MQRC_ADAPTER_NOT_AVAILABLE insteaduse MQConstants.MQRC_ADAPTER_SERV_LOAD_ERROR insteaduse MQConstants.MQRC_ADAPTER_STORAGE_SHORTAGE insteaduse MQConstants.MQRC_ALIAS_BASE_Q_TYPE_ERROR insteaduse MQConstants.MQRC_ALREADY_CONNECTED insteaduse MQConstants.MQRC_ANOTHER_Q_MGR_CONNECTED insteaduse MQConstants.MQRC_API_EXIT_LOAD_ERROR insteaduse MQConstants.MQRC_API_EXIT_NOT_FOUND insteaduse MQConstants.MQRC_ASID_MISMATCH insteaduse MQConstants.MQRC_BACKED_OUT insteaduse MQConstants.MQRC_BACKOUT_THRESHOLD_REACHED insteaduse MQConstants.MQRC_BAG_CONVERSION_ERROR insteaduse MQConstants.MQRC_BAG_WRONG_TYPE insteaduse MQConstants.MQRC_BUFFER_ERROR insteaduse MQConstants.MQRC_BUFFER_LENGTH_ERROR insteaduse MQConstants.MQRC_CALL_IN_PROGRESS insteaduse MQConstants.MQRC_CD_ERROR insteaduse MQConstants.MQRC_CF_NOT_AVAILABLE insteaduse MQConstants.MQRC_CF_STRUC_AUTH_FAILED insteaduse MQConstants.MQRC_CF_STRUC_ERROR insteaduse MQConstants.MQRC_CF_STRUC_IN_USE insteaduse MQConstants.MQRC_CF_STRUC_LIST_HDR_IN_USE insteaduse MQConstants.MQRC_CFH_ERROR insteaduse MQConstants.MQRC_CFIL_ERROR insteaduse MQConstants.MQRC_CFIN_ERROR insteaduse MQConstants.MQRC_CFSL_ERROR insteaduse MQConstants.MQRC_CFST_ERROR insteaduse MQConstants.MQRC_CHANNEL_ACTIVATED insteaduse MQConstants.MQRC_CHANNEL_AUTO_DEF_ERROR insteaduse MQConstants.MQRC_CHANNEL_AUTO_DEF_OK insteaduse MQConstants.MQRC_CHANNEL_CONV_ERROR insteaduse MQConstants.MQRC_CHANNEL_NOT_ACTIVATED insteaduse MQConstants.MQRC_CHANNEL_STARTED insteaduse MQConstants.MQRC_CHANNEL_STOPPED insteaduse MQConstants.MQRC_CHANNEL_STOPPED_BY_USER insteaduse MQConstants.MQRC_CHAR_ATTR_LENGTH_ERROR insteaduse MQConstants.MQRC_CHAR_ATTRS_ERROR insteaduse MQConstants.MQRC_CHAR_ATTRS_TOO_SHORT insteaduse MQConstants.MQRC_CHAR_CONVERSION_ERROR insteaduse MQConstants.MQRC_CICS_WAIT_FAILED insteaduse MQConstants.MQRC_CLIENT_CHANNEL_CONFLICT insteaduse MQConstants.MQRC_CLIENT_CONN_ERROR insteaduse MQConstants.MQRC_CLIENT_EXIT_ERROR insteaduse MQConstants.MQRC_CLIENT_EXIT_LOAD_ERROR insteaduse MQConstants.MQRC_CLUSTER_EXIT_ERROR insteaduse MQConstants.MQRC_CLUSTER_EXIT_LOAD_ERROR insteaduse MQConstants.MQRC_CLUSTER_PUT_INHIBITED insteaduse MQConstants.MQRC_CLUSTER_RESOLUTION_ERROR insteaduse MQConstants.MQRC_CLUSTER_RESOURCE_ERROR insteaduse MQConstants.MQRC_CMD_SERVER_NOT_AVAILABLE insteaduse MQConstants.MQRC_CNO_ERROR insteaduse MQConstants.MQRC_COD_NOT_VALID_FOR_XCF_Q insteaduse MQConstants.MQRC_CODED_CHAR_SET_ID_ERROR insteaduse MQConstants.MQRC_COMMAND_TYPE_ERROR insteaduse MQConstants.MQRC_CONN_ID_IN_USE insteaduse MQConstants.MQRC_CONN_TAG_NOT_RELEASED insteaduse MQConstants.MQRC_CONN_TAG_NOT_USABLE insteaduse MQConstants.MQRC_CONNECTION_BROKEN insteaduse MQConstants.MQRC_CONNECTION_NOT_AUTHORIZED insteaduse MQConstants.MQRC_CONNECTION_QUIESCING insteaduse MQConstants.MQRC_CONNECTION_STOPPING insteaduse MQConstants.MQRC_CONTEXT_HANDLE_ERROR insteaduse MQConstants.MQRC_CONTEXT_NOT_AVAILABLE insteaduse MQConstants.MQRC_CONVERTED_MSG_TOO_BIG insteaduse MQConstants.MQRC_CONVERTED_STRING_TOO_BIG insteaduse MQConstants.MQRC_CORREL_ID_ERROR insteaduse MQConstants.MQRC_CURRENT_RECORD_ERROR insteaduse MQConstants.MQRC_DATA_LENGTH_ERROR insteaduse MQConstants.MQRC_DB2_NOT_AVAILABLE insteaduse MQConstants.MQRC_DBCS_ERROR insteaduse MQConstants.MQRC_DEF_XMIT_Q_TYPE_ERROR insteaduse MQConstants.MQRC_DEF_XMIT_Q_USAGE_ERROR insteaduse MQConstants.MQRC_DEST_ENV_ERROR insteaduse MQConstants.MQRC_DEST_NAME_ERROR insteaduse MQConstants.MQRC_DLH_ERROR insteaduse MQConstants.MQRC_DUPLICATE_RECOV_COORD insteaduse MQConstants.MQRC_DYNAMIC_Q_NAME_ERROR insteaduse MQConstants.MQRC_ENCODING_NOT_SUPPORTED insteaduse MQConstants.MQRC_ENVIRONMENT_ERROR insteaduse MQConstants.MQRC_EXPIRY_ERROR insteaduse MQConstants.MQRC_FEEDBACK_ERROR insteaduse MQConstants.MQRC_FILE_NOT_AUDITED insteaduse MQConstants.MQRC_FILE_SYSTEM_ERROR insteaduse MQConstants.MQRC_FORMAT_ERROR insteaduse MQConstants.MQRC_FORMAT_NOT_SUPPORTED insteaduse MQConstants.MQRC_FUNCTION_ERROR insteaduse MQConstants.MQRC_FUNCTION_NOT_SUPPORTED insteaduse MQConstants.MQRC_GET_INHIBITED insteaduse MQConstants.MQRC_GLOBAL_UOW_CONFLICT insteaduse MQConstants.MQRC_GMO_ERROR insteaduse MQConstants.MQRC_GROUP_ID_ERROR insteaduse MQConstants.MQRC_HANDLE_IN_USE_FOR_UOW insteaduse MQConstants.MQRC_HANDLE_NOT_AVAILABLE insteaduse MQConstants.MQRC_HBAG_ERROR insteaduse MQConstants.MQRC_HCONFIG_ERROR insteaduse MQConstants.MQRC_HCONN_ERROR insteaduse MQConstants.MQRC_HEADER_ERROR insteaduse MQConstants.MQRC_HOBJ_ERROR insteaduse MQConstants.MQRC_INCOMPLETE_GROUP insteaduse MQConstants.MQRC_INCOMPLETE_MSG insteaduse MQConstants.MQRC_INCONSISTENT_BROWSE insteaduse MQConstants.MQRC_INCONSISTENT_CCSIDS insteaduse MQConstants.MQRC_INCONSISTENT_ENCODINGS insteaduse MQConstants.MQRC_INCONSISTENT_ITEM_TYPE insteaduse MQConstants.MQRC_INCONSISTENT_PERSISTENCE insteaduse MQConstants.MQRC_INCONSISTENT_UOW insteaduse MQConstants.MQRC_INDEX_ERROR insteaduse MQConstants.MQRC_INDEX_NOT_PRESENT insteaduse MQConstants.MQRC_INHIBIT_VALUE_ERROR insteaduse MQConstants.MQRC_INITIALIZATION_FAILED insteaduse MQConstants.MQRC_INQUIRY_COMMAND_ERROR insteaduse MQConstants.MQRC_INT_ATTR_COUNT_ERROR insteaduse MQConstants.MQRC_INT_ATTR_COUNT_TOO_SMALL insteaduse MQConstants.MQRC_INT_ATTRS_ARRAY_ERROR insteaduse MQConstants.MQRC_INVALID_MSG_UNDER_CURSOR insteaduse MQConstants.MQRC_ITEM_COUNT_ERROR insteaduse MQConstants.MQRC_ITEM_TYPE_ERROR insteaduse MQConstants.MQRC_ITEM_VALUE_ERROR insteaduse MQConstants.MQRC_JMS_FORMAT_ERROR insteaduse MQConstants.MQRC_JSSE_ERROR insteaduse MQConstants.MQRC_LOCAL_UOW_CONFLICT insteaduse MQConstants.MQRC_MATCH_OPTIONS_ERROR insteaduse MQConstants.MQRC_MAX_CONNS_LIMIT_REACHED insteaduse MQConstants.MQRC_MD_ERROR insteaduse MQConstants.MQRC_MDE_ERROR insteaduse MQConstants.MQRC_MISSING_REPLY_TO_Q insteaduse MQConstants.MQRC_MISSING_WIH insteaduse MQConstants.MQRC_MSG_FLAGS_ERROR insteaduse MQConstants.MQRC_MSG_ID_ERROR insteaduse MQConstants.MQRC_MSG_MARKED_BROWSE_CO_OP insteaduse MQConstants.MQRC_MSG_NOT_MATCHED insteaduse MQConstants.MQRC_MSG_SEQ_NUMBER_ERROR insteaduse MQConstants.MQRC_MSG_TOKEN_ERROR insteaduse MQConstants.MQRC_MSG_TOO_BIG_FOR_CHANNEL insteaduse MQConstants.MQRC_MSG_TOO_BIG_FOR_Q insteaduse MQConstants.MQRC_MSG_TOO_BIG_FOR_Q_MGR insteaduse MQConstants.MQRC_MSG_TYPE_ERROR insteaduse MQConstants.MQRC_MULTIPLE_INSTANCE_ERROR insteaduse MQConstants.MQRC_MULTIPLE_REASONS insteaduse MQConstants.MQRC_NAME_IN_USE insteaduse MQConstants.MQRC_NAME_NOT_VALID_FOR_TYPE insteaduse MQConstants.MQRC_NESTED_BAG_NOT_SUPPORTED insteaduse MQConstants.MQRC_NEXT_OFFSET_ERROR insteaduse MQConstants.MQRC_NEXT_RECORD_ERROR insteaduse MQConstants.MQRC_NO_DESTINATIONS_AVAILABLE insteaduse MQConstants.MQRC_NO_EXTERNAL_PARTICIPANTS insteaduse MQConstants.MQRC_NO_MSG_AVAILABLE insteaduse MQConstants.MQRC_NO_MSG_LOCKED insteaduse MQConstants.MQRC_NO_MSG_UNDER_CURSOR insteaduse MQConstants.MQRC_NO_RECORD_AVAILABLE insteaduse MQConstants.MQRC_NONE insteaduse MQConstants.MQRC_NOT_AUTHORIZED insteaduse MQConstants.MQRC_NOT_CONVERTED insteaduse MQConstants.MQRC_NOT_OPEN_FOR_BROWSE insteaduse MQConstants.MQRC_NOT_OPEN_FOR_INPUT insteaduse MQConstants.MQRC_NOT_OPEN_FOR_INQUIRE insteaduse MQConstants.MQRC_NOT_OPEN_FOR_OUTPUT insteaduse MQConstants.MQRC_NOT_OPEN_FOR_PASS_ALL insteaduse MQConstants.MQRC_NOT_OPEN_FOR_PASS_IDENT insteaduse MQConstants.MQRC_NOT_OPEN_FOR_SET insteaduse MQConstants.MQRC_NOT_OPEN_FOR_SET_ALL insteaduse MQConstants.MQRC_NOT_OPEN_FOR_SET_IDENT insteaduse MQConstants.MQRC_OBJECT_ALREADY_EXISTS insteaduse MQConstants.MQRC_OBJECT_CHANGED insteaduse MQConstants.MQRC_OBJECT_DAMAGED insteaduse MQConstants.MQRC_OBJECT_IN_USE insteaduse MQConstants.MQRC_OBJECT_LEVEL_INCOMPATIBLE insteaduse MQConstants.MQRC_OBJECT_NAME_ERROR insteaduse MQConstants.MQRC_OBJECT_NOT_UNIQUE insteaduse MQConstants.MQRC_OBJECT_Q_MGR_NAME_ERROR insteaduse MQConstants.MQRC_OBJECT_RECORDS_ERROR insteaduse MQConstants.MQRC_OBJECT_TYPE_ERROR insteaduse MQConstants.MQRC_OD_ERROR insteaduse MQConstants.MQRC_OFFSET_ERROR insteaduse MQConstants.MQRC_OPEN_FAILED insteaduse MQConstants.MQRC_OPTION_ENVIRONMENT_ERROR insteaduse MQConstants.MQRC_OPTION_NOT_VALID_FOR_TYPE insteaduse MQConstants.MQRC_OPTIONS_CHANGED insteaduse MQConstants.MQRC_OPTIONS_ERROR insteaduse MQConstants.MQRC_ORIGINAL_LENGTH_ERROR insteaduse MQConstants.MQRC_OUT_SELECTOR_ERROR insteaduse MQConstants.MQRC_OUTCOME_MIXED insteaduse MQConstants.MQRC_OUTCOME_PENDING insteaduse MQConstants.MQRC_PAGESET_ERROR insteaduse MQConstants.MQRC_PAGESET_FULL insteaduse MQConstants.MQRC_PARAMETER_MISSING insteaduse MQConstants.MQRC_PARTICIPANT_NOT_AVAILABLE insteaduse MQConstants.MQRC_PARTICIPANT_NOT_DEFINED insteaduse MQConstants.MQRC_PERSISTENCE_ERROR insteaduse MQConstants.MQRC_PERSISTENT_NOT_ALLOWED insteaduse MQConstants.MQRC_PMO_ERROR insteaduse MQConstants.MQRC_PMO_RECORD_FLAGS_ERROR insteaduse MQConstants.MQRC_PRIORITY_ERROR insteaduse MQConstants.MQRC_PRIORITY_EXCEEDS_MAXIMUM insteaduse MQConstants.MQRC_PUT_INHIBITED insteaduse MQConstants.MQRC_PUT_MSG_RECORDS_ERROR insteaduse MQConstants.MQRC_Q_ALREADY_EXISTS insteaduse MQConstants.MQRC_Q_DELETED insteaduse MQConstants.MQRC_Q_DEPTH_HIGH insteaduse MQConstants.MQRC_Q_DEPTH_LOW insteaduse MQConstants.MQRC_Q_FULL insteaduse MQConstants.MQRC_Q_MGR_ACTIVE insteaduse MQConstants.MQRC_Q_MGR_NAME_ERROR insteaduse MQConstants.MQRC_Q_MGR_NOT_ACTIVE insteaduse MQConstants.MQRC_Q_MGR_NOT_AVAILABLE insteaduse MQConstants.MQRC_Q_MGR_QUIESCING insteaduse MQConstants.MQRC_Q_MGR_STOPPING insteaduse MQConstants.MQRC_Q_NOT_EMPTY insteaduse MQConstants.MQRC_Q_SERVICE_INTERVAL_HIGH insteaduse MQConstants.MQRC_Q_SERVICE_INTERVAL_OK insteaduse MQConstants.MQRC_Q_SPACE_NOT_AVAILABLE insteaduse MQConstants.MQRC_Q_TYPE_ERROR insteaduse MQConstants.MQRC_READ_AHEAD_MSGS insteaduse MQConstants.MQRC_RECS_PRESENT_ERROR insteaduse MQConstants.MQRC_REMOTE_Q_NAME_ERROR insteaduse MQConstants.MQRC_REPORT_OPTIONS_ERROR insteaduse MQConstants.MQRC_RESOURCE_PROBLEM insteaduse MQConstants.MQRC_RESPONSE_RECORDS_ERROR insteaduse MQConstants.MQRC_RFH_COMMAND_ERROR insteaduse MQConstants.MQRC_RFH_DUPLICATE_PARM insteaduse MQConstants.MQRC_RFH_ERROR insteaduse MQConstants.MQRC_RFH_PARM_ERROR insteaduse MQConstants.MQRC_RFH_PARM_MISSING insteaduse MQConstants.MQRC_RFH_STRING_ERROR insteaduse MQConstants.MQRC_RMH_ERROR insteaduse MQConstants.MQRC_SECOND_MARK_NOT_ALLOWED insteaduse MQConstants.MQRC_SECURITY_ERROR insteaduse MQConstants.MQRC_SEGMENT_LENGTH_ZERO insteaduse MQConstants.MQRC_SELECTOR_COUNT_ERROR insteaduse MQConstants.MQRC_SELECTOR_ERROR insteaduse MQConstants.MQRC_SELECTOR_LIMIT_EXCEEDED insteaduse MQConstants.MQRC_SELECTOR_NOT_FOR_TYPE insteaduse MQConstants.MQRC_SELECTOR_NOT_PRESENT insteaduse MQConstants.MQRC_SELECTOR_NOT_SUPPORTED insteaduse MQConstants.MQRC_SELECTOR_NOT_UNIQUE insteaduse MQConstants.MQRC_SELECTOR_OUT_OF_RANGE insteaduse MQConstants.MQRC_SELECTOR_TYPE_ERROR insteaduse MQConstants.MQRC_SELECTOR_WRONG_TYPE insteaduse MQConstants.MQRC_SERVICE_ERROR insteaduse MQConstants.MQRC_SERVICE_NOT_AVAILABLE insteaduse MQConstants.MQRC_SIGNAL_OUTSTANDING insteaduse MQConstants.MQRC_SIGNAL_REQUEST_ACCEPTED insteaduse MQConstants.MQRC_SIGNAL1_ERROR insteaduse MQConstants.MQRC_SOURCE_BUFFER_ERROR insteaduse MQConstants.MQRC_SOURCE_CCSID_ERROR insteaduse MQConstants.MQRC_SOURCE_DECIMAL_ENC_ERROR insteaduse MQConstants.MQRC_SOURCE_FLOAT_ENC_ERROR insteaduse MQConstants.MQRC_SOURCE_INTEGER_ENC_ERROR insteaduse MQConstants.MQRC_SOURCE_LENGTH_ERROR insteaduse MQConstants.MQRC_SRC_ENV_ERROR insteaduse MQConstants.MQRC_SRC_NAME_ERROR insteaduse MQConstants.MQRC_SSL_CERT_STORE_ERROR insteaduse MQConstants.MQRC_SSL_CERTIFICATE_REVOKED insteaduse MQConstants.MQRC_SSL_INITIALIZATION_ERROR insteaduse MQConstants.MQRC_SSL_KEY_RESET_ERROR insteaduse MQConstants.MQRC_SSL_NOT_ALLOWED insteaduse MQConstants.MQRC_SSL_PEER_NAME_ERROR insteaduse MQConstants.MQRC_SSL_PEER_NAME_MISMATCH insteaduse MQConstants.MQRC_STOPPED_BY_CLUSTER_EXIT insteaduse MQConstants.MQRC_STORAGE_CLASS_ERROR insteaduse MQConstants.MQRC_STORAGE_NOT_AVAILABLE insteaduse MQConstants.MQRC_STRING_ERROR insteaduse MQConstants.MQRC_STRING_LENGTH_ERROR insteaduse MQConstants.MQRC_STRING_TRUNCATED insteaduse MQConstants.MQRC_SUPPRESSED_BY_EXIT insteaduse MQConstants.MQRC_SYNCPOINT_LIMIT_REACHED insteaduse MQConstants.MQRC_SYNCPOINT_NOT_AVAILABLE insteaduse MQConstants.MQRC_SYSTEM_BAG_NOT_ALTERABLE insteaduse MQConstants.MQRC_SYSTEM_BAG_NOT_DELETABLE insteaduse MQConstants.MQRC_SYSTEM_ITEM_NOT_ALTERABLE insteaduse MQConstants.MQRC_SYSTEM_ITEM_NOT_DELETABLE insteaduse MQConstants.MQRC_TARGET_BUFFER_ERROR insteaduse MQConstants.MQRC_TARGET_CCSID_ERROR insteaduse MQConstants.MQRC_TARGET_DECIMAL_ENC_ERROR insteaduse MQConstants.MQRC_TARGET_FLOAT_ENC_ERROR insteaduse MQConstants.MQRC_TARGET_INTEGER_ENC_ERROR insteaduse MQConstants.MQRC_TARGET_LENGTH_ERROR insteaduse MQConstants.MQRC_TERMINATION_FAILED insteaduse MQConstants.MQRC_TM_ERROR insteaduse MQConstants.MQRC_TMC_ERROR insteaduse MQConstants.MQRC_TRIGGER_CONTROL_ERROR insteaduse MQConstants.MQRC_TRIGGER_DEPTH_ERROR insteaduse MQConstants.MQRC_TRIGGER_MSG_PRIORITY_ERR insteaduse MQConstants.MQRC_TRIGGER_TYPE_ERROR insteaduse MQConstants.MQRC_TRUNCATED_MSG_ACCEPTED insteaduse MQConstants.MQRC_TRUNCATED_MSG_FAILED insteaduse MQConstants.MQRC_UCS2_CONVERSION_ERROR insteaduse MQConstants.MQRC_UNEXPECTED_ERROR insteaduse MQConstants.MQRC_UNIT_OF_WORK_NOT_STARTED insteaduse MQConstants.MQRC_UNKNOWN_ALIAS_BASE_Q insteaduse MQConstants.MQRC_UNKNOWN_AUTH_ENTITY insteaduse MQConstants.MQRC_UNKNOWN_DEF_XMIT_Q insteaduse MQConstants.MQRC_UNKNOWN_ENTITY insteaduse MQConstants.MQRC_UNKNOWN_OBJECT_NAME insteaduse MQConstants.MQRC_UNKNOWN_OBJECT_Q_MGR insteaduse MQConstants.MQRC_UNKNOWN_Q_NAME insteaduse MQConstants.MQRC_UNKNOWN_REF_OBJECT insteaduse MQConstants.MQRC_UNKNOWN_REMOTE_Q_MGR insteaduse MQConstants.MQRC_UNKNOWN_REPORT_OPTION insteaduse MQConstants.MQRC_UNKNOWN_XMIT_Q insteaduse MQConstants.MQRC_UNSUPPORTED_CIPHER_SUITE insteaduse MQConstants.MQRC_UOW_CANCELED insteaduse MQConstants.MQRC_UOW_ENLISTMENT_ERROR insteaduse MQConstants.MQRC_UOW_MIX_NOT_SUPPORTED insteaduse MQConstants.MQRC_UOW_NOT_AVAILABLE insteaduse MQConstants.MQRC_USER_ID_NOT_AVAILABLE insteaduse MQConstants.MQRC_WAIT_INTERVAL_ERROR insteaduse MQConstants.MQRC_WIH_ERROR insteaduse MQConstants.MQRC_WRONG_GMO_VERSION insteaduse MQConstants.MQRC_WRONG_MD_VERSION insteaduse MQConstants.MQRC_WXP_ERROR insteaduse MQConstants.MQRC_XMIT_Q_TYPE_ERROR insteaduse MQConstants.MQRC_XMIT_Q_USAGE_ERROR insteaduse MQConstants.MQRC_XQH_ERROR insteaduse MQConstants.MQRC_XWAIT_CANCELED insteaduse MQConstants.MQRC_XWAIT_ERROR insteadAccessing this field directly is not recommended. TheMQManagedObject.getAlternateUserId()call should be used instead.Accessing this field directly is not recommended. TheMQManagedObject.setCloseOptions(int)andMQManagedObject.getCloseOptions()calls should be used instead.Accessing this field directly is not recommended. TheMQManagedObject.getConnectionReference()call should be used instead.Accessing this field directly is not recommended. TheMQManagedObject.isOpen()call should be used instead.Accessing this field directly is not recommended. TheMQManagedObject.getName()call should be used instead.Accessing this field directly is not recommended. TheMQManagedObject.getOpenOptions()call should be used instead.Use theMQQueueManager.isConnected()method instead.preferPCFHeader.size()Use getReplyQueueName instead.
-
Deprecated MethodsMethodDescriptionprefer
Charsets.convert(byte[],int)preferCharsets.convert(String,int)No longer requiredUse setCheckResponses and send(com.ibm.mq.headers.pcf.PCFMessage)Use setCheckResponses/setUsePlatformSettings and send(com.ibm.mq.headers.pcf.PCFMessage)This method and MQC.MQ_QMGR_ASSOCIATION_PROPERTY are deprecated, as they generally provide no particular value.This method and MQC.MQ_QMGR_ASSOCIATION_PROPERTY are deprecated, as they generally provide no particular value.usereadStringOfCharLength(int)method instead.This implements theDataOutput.writeBytes(String)method which is not a general string writing routine - it writes the low-order bytes from the characters in the String to the Message, discarding the high-order bytes. (In MQ, it is hard to see where behaviour would be desirable, but it is mandatory as MQMessage implements theDataOutputinterface.)
No data conversion is performed by this method. If you wish to write a string to the message with appropriate handling of the character set currently in force, useMQMessage.writeString(String)instead of this method.usegetMaxUnusedConnections()instead.usesetMaxUnusedConnections()instead.Use setCheckResponses and send(com.ibm.mq.pcf.PCFMessage)Use setCheckResponses/setUsePlatformSettings and send(com.ibm.mq.pcf.PCFMessage)
-
Deprecated Constructors