[QFJ-618] Documentation for ValidateUserDefinedFields is incorrect Created: 13/Jul/11  Updated: 03/Dec/14  Resolved: 03/Dec/14

Status: Closed
Project: QuickFIX/J
Component/s: Documentation
Affects Version/s: 1.5.0
Fix Version/s: None

Type: Improvement Priority: Default
Reporter: Jerome Thibodeau Assignee: Unassigned
Resolution: Duplicate Votes: 0
Labels: None

Issue Links:
Duplicate
duplicates QFJ-454 Update documentation to reflect that ... Closed

 Description   

In the documentation : http://www.quickfixj.org/quickfixj/usermanual/1.5.0/usage/configuration.html

ValidateUserDefinedFields If set to N, user defined fields will not be rejected if they are not defined in the data dictionary, or are present in messages they do not belong

With default value : N

But in the code line 76 the variable checkUserDefinedFields is initialized to true.

62 public class DataDictionary {
63 private static final String FIXT_PREFIX = "FIXT";
64 private static final String FIX_PREFIX = "FIX";
65 public static final String ANY_VALUE = "_ANY_";
66 public static final String HEADER_ID = "HEADER";
67 public static final String TRAILER_ID = "TRAILER";
68 private static final String MESSAGE_CATEGORY_ADMIN = "admin".intern();
69 private static final String MESSAGE_CATEGORY_APP = "app".intern();
70
71 private static final int USER_DEFINED_TAG_MIN = 5000;
72 private static final String NO = "N";
73 private boolean hasVersion = false;
74 private boolean checkFieldsOutOfOrder = true;
75 private boolean checkFieldsHaveValues = true;
76 private boolean checkUserDefinedFields = true;



 Comments   
Comment by Christoph John [ 03/Dec/14 ]

duplicate of QFJ-454

Comment by Christoph John [ 03/Dec/14 ]

It seems the documentation for 1.5.0 was indeed incorrect, but it is corrected since 1.5.1

Generated at Thu May 09 01:55:53 UTC 2024 using JIRA 7.5.2#75007-sha1:9f5725bb824792b3230a5d8716f0c13e296a3cae.