Class: Quickfix::Password

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ Password

Returns a new instance of Password.



643
644
645
646
647
648
649
# File 'lib/quickfix_fields.rb', line 643

def initialize(data = nil)
  if( data == nil )
    super(554)
  else
    super(554, data)
  end
end

Class Method Details

.fieldObject



640
641
642
# File 'lib/quickfix_fields.rb', line 640

def Password.field
  return 554
end