Class: Quickfix::EncryptedPasswordMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EncryptedPasswordMethod



812
813
814
815
816
817
818
# File 'lib/quickfix_fields.rb', line 812

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

Class Method Details

.fieldObject



809
810
811
# File 'lib/quickfix_fields.rb', line 809

def EncryptedPasswordMethod.field
  return 1400
end