OnixS Eurex ETI Handler C++ library  9.21.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
13  * part of this source code or associated reference material to any other location for further
14  * reproduction or redistribution, and any amendments to this copyright notice, are expressly
15  * prohibited.
16  *
17  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
18  * the terms of the Agreement is a violation of copyright law.
19  */
20 
21 #pragma once
22 
25 #include "OnixS/Eurex/Trading/Export.h"
26 
27 namespace OnixS { namespace Eurex { namespace Trading {
28 
29 /// Initial logon message parameters.
30 class ONIXS_EUREX_ETI_EXPORT Logon
31 {
32 public:
33  /// Initialize default instance.
34  Logon();
35 
36  /// Identification of a Trading Session provided by Eurex to a certain business unit.
38 
39  /// Password.
40  ///
41  /// This password is used only if \ref encryptedPassword is NOT set.
42  std::string password;
43 
44  /// Encrypted password.
45  ///
46  /// If not set, \ref password is used.
47  std::string encryptedPassword;
48 
49  /// Type of order processing.
51 
52  /// Type of quote processing.
54 
55  /// Indicates if the participant application is an order routing system.
57 
58  /// The name of the infrastructure component being used for session level communication.
59  std::string fixEngineName;
60 
61  /// The version of the FIX infrastructure component.
62  std::string fixEngineVersion;
63 
64  /// The name of the vendor providing the FIX infrastructure component.
65  std::string fixEngineVendor;
66 
67  /// The name of the application system being used to generate Eurex ETI application messages.
68  std::string applicationSystemName;
69 
70  /// The version of the application system being used to initiate Eurex ETI application messages.
72 
73  /// The vendor of the application system.
75 
76  /// Returns string representation.
77  std::string toString() const;
78 };
79 
80 ONIXS_EUREX_ETI_EXPORT std::ostream& operator<<(std::ostream&, const Logon&);
81 
82 }}} // namespace OnixS::Eurex::Trading
std::string fixEngineName
The name of the infrastructure component being used for session level communication.
Definition: Logon.h:59
Enum
Indicates if the participant application is an order routing system.
ApplUsageOrders::Enum applUsageOrders
Type of order processing.
Definition: Logon.h:50
OrderRoutingIndicator::Enum orderRoutingIndicator
Indicates if the participant application is an order routing system.
Definition: Logon.h:56
Initial logon message parameters.
Definition: Logon.h:30
std::string applicationSystemVendor
The vendor of the application system.
Definition: Logon.h:74
std::string fixEngineVendor
The name of the vendor providing the FIX infrastructure component.
Definition: Logon.h:65
unsigned int UInt32
Definition: Defines.h:45
std::ostream & operator<<(std::ostream &, ConnectionState::Enum)
Make it printable using C++ I/O streams.
ApplUsageQuotes::Enum applUsageQuotes
Type of quote processing.
Definition: Logon.h:53
std::string applicationSystemName
The name of the application system being used to generate Eurex ETI application messages.
Definition: Logon.h:68
std::string applicationSystemVersion
The version of the application system being used to initiate Eurex ETI application messages...
Definition: Logon.h:71
Enum
Type of quote processing.
Definition: Enumerations.h:151
UInt32 partyIdSessionId
Identification of a Trading Session provided by Eurex to a certain business unit. ...
Definition: Logon.h:37
Enum
Type of order processing.
Definition: Enumerations.h:131
std::string fixEngineVersion
The version of the FIX infrastructure component.
Definition: Logon.h:62
std::string encryptedPassword
Definition: Logon.h:47
std::string password
Definition: Logon.h:42