OnixS Eurex ETI Handler C++ library  9.19.0
API documentation
Logon.h
Go to the documentation of this file.
1 /*
2  * Copyright Onix Solutions Limited [OnixS]. All rights reserved.
3  *
4  * This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
5  * and international copyright treaties.
6  *
7  * Access to and use of the software is governed by the terms of the applicable ONIXS Software
8  * Services Agreement (the Agreement) and Customer end user license agreements granting
9  * a non-assignable, non-transferable and non-exclusive license to use the software
10  * for it's own data processing purposes under the terms defined in the Agreement.
11  *
12  * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
13  * of this source code or associated reference material to any other location for further reproduction
14  * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15  *
16  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17  * the terms of the Agreement is a violation of copyright law.
18  */
19 
20 #pragma once
21 
22 #include "OnixS/Eurex/Trading/Export.h"
25 
26 namespace OnixS {
27 namespace Eurex {
28 namespace Trading {
29 
30 /// Initial logon message parameters.
31 class ONIXS_EUREX_ETI_EXPORT Logon
32 {
33 public:
34  /// Initialize default instance.
35  Logon ();
36 
37  /// Identification of a Trading Session provided by Eurex to a certain business unit.
39 
40  /// Password.
41  ///
42  /// This password is used only if \ref encryptedPassword is NOT set.
43  std::string password;
44 
45  /// Encrypted password.
46  ///
47  /// If not set, \ref password is used.
48  std::string encryptedPassword;
49 
50  /// Type of order processing.
52 
53  /// Type of quote processing.
55 
56  /// Indicates if the participant application is an order routing system.
58 
59  /// The name of the infrastructure component being used for session level communication.
60  std::string fixEngineName;
61 
62  /// The version of the FIX infrastructure component.
63  std::string fixEngineVersion;
64 
65  /// The name of the vendor providing the FIX infrastructure component.
66  std::string fixEngineVendor;
67 
68  /// The name of the application system being used to generate Eurex ETI application messages.
69  std::string applicationSystemName;
70 
71  /// The version of the application system being used to initiate Eurex ETI application messages.
73 
74  /// The vendor of the application system.
76 
77  /// Returns string representation.
78  std::string toString () const;
79 };
80 
81 ONIXS_EUREX_ETI_EXPORT std::ostream& operator << (std::ostream&, const Logon&);
82 
83 }
84 }
85 }
std::string fixEngineName
The name of the infrastructure component being used for session level communication.
Definition: Logon.h:60
Enum
Indicates if the participant application is an order routing system.
ApplUsageOrders::Enum applUsageOrders
Type of order processing.
Definition: Logon.h:51
OrderRoutingIndicator::Enum orderRoutingIndicator
Indicates if the participant application is an order routing system.
Definition: Logon.h:57
Initial logon message parameters.
Definition: Logon.h:31
std::string applicationSystemVendor
The vendor of the application system.
Definition: Logon.h:75
std::string fixEngineVendor
The name of the vendor providing the FIX infrastructure component.
Definition: Logon.h:66
unsigned int UInt32
Definition: Defines.h:46
ApplUsageQuotes::Enum applUsageQuotes
Type of quote processing.
Definition: Logon.h:54
std::string applicationSystemName
The name of the application system being used to generate Eurex ETI application messages.
Definition: Logon.h:69
std::string applicationSystemVersion
The version of the application system being used to initiate Eurex ETI application messages...
Definition: Logon.h:72
Enum
Type of quote processing.
Definition: Enumerations.h:133
UInt32 partyIdSessionId
Identification of a Trading Session provided by Eurex to a certain business unit. ...
Definition: Logon.h:38
std::ostream & operator<<(std::ostream &, const ConnectionStateChange &)
Make it printable to formatted C++ I/O streams.
Enum
Type of order processing.
Definition: Enumerations.h:116
std::string fixEngineVersion
The version of the FIX infrastructure component.
Definition: Logon.h:63
std::string encryptedPassword
Definition: Logon.h:48
std::string password
Definition: Logon.h:43