38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
|
|
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace ARI.EAP.HOST.MQ
|
|
{
|
|
[Serializable]
|
|
public class MQConnectionCfg
|
|
{
|
|
public MQConnectionCfg() { }
|
|
|
|
[XmlAttribute]
|
|
public string HostName { get; set; }
|
|
[XmlAttribute]
|
|
public string VirtualHost { get; set; }
|
|
[XmlAttribute]
|
|
public string UserName { get; set; }
|
|
[XmlAttribute]
|
|
public string Password { get; set; }
|
|
[XmlAttribute]
|
|
public int Port { get; set; }
|
|
[XmlAttribute]
|
|
public string ClientProvidedName { get; set; }
|
|
public string Exchange { get; set; }
|
|
public string Exchange_RTDB { get; set; }
|
|
public string EAP_Request_Queue { get; set; }
|
|
public string EAP_Response_Queue { get; set; }
|
|
public string MES_Request_Queue { get; set; }
|
|
public string MES_Response_Queue { get; set; }
|
|
public string EAP_Request_Queue_RTDB { get; set; }
|
|
public string EAP_Request_Queue_RoutingKey { get; set; }
|
|
public string EAP_Response_Queue_RoutingKey { get; set; }
|
|
public string MES_Request_Queue_RoutingKey { get; set; }
|
|
public string MES_Response_Queue_RoutingKey { get; set; }
|
|
public string Exchange_Name_Dle { get; set; }
|
|
public string Dead_Letter_RoutingKey { get; set; }
|
|
}
|
|
} |