OnixS Eurex ETI Handler C++ library  9.15.2
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  std::string password;
42 
43  /// Type of order processing.
45 
46  /// Type of quote processing.
48 
49  /// Indicates if the participant application is an order routing system.
51 
52  /// The name of the infrastructure component being used for session level communication.
53  std::string fixEngineName;
54 
55  /// The version of the FIX infrastructure component.
56  std::string fixEngineVersion;
57 
58  /// The name of the vendor providing the FIX infrastructure component.
59  std::string fixEngineVendor;
60 
61  /// The name of the application system being used to generate Eurex ETI application messages.
62  std::string applicationSystemName;
63 
64  /// The version of the application system being used to initiate Eurex ETI application messages.
66 
67  /// The vendor of the application system.
69 
70  /// Returns string representation.
71  std::string toString () const;
72 };
73 
74 ONIXS_EUREX_ETI_EXPORT std::ostream& operator << (std::ostream&, const Logon&);
75 
76 }
77 }
78 }
std::string fixEngineName
The name of the infrastructure component being used for session level communication.
Definition: Logon.h:53
Enum
Indicates if the participant application is an order routing system.
std::ostream & operator<<(std::ostream &, const ConnectionRetries &)
ApplUsageOrders::Enum applUsageOrders
Type of order processing.
Definition: Logon.h:44
OrderRoutingIndicator::Enum orderRoutingIndicator
Indicates if the participant application is an order routing system.
Definition: Logon.h:50
Initial logon message parameters.
Definition: Logon.h:31
std::string applicationSystemVendor
The vendor of the application system.
Definition: Logon.h:68
std::string fixEngineVendor
The name of the vendor providing the FIX infrastructure component.
Definition: Logon.h:59
unsigned int UInt32
Definition: Defines.h:46
ApplUsageQuotes::Enum applUsageQuotes
Type of quote processing.
Definition: Logon.h:47
std::string applicationSystemName
The name of the application system being used to generate Eurex ETI application messages.
Definition: Logon.h:62
std::string applicationSystemVersion
The version of the application system being used to initiate Eurex ETI application messages...
Definition: Logon.h:65
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
Enum
Type of order processing.
Definition: Enumerations.h:116
std::string fixEngineVersion
The version of the FIX infrastructure component.
Definition: Logon.h:56
std::string password
Password.
Definition: Logon.h:41