Class: Quickfix::EncryptedPasswordMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncryptedPasswordMethod

Returns a new instance of EncryptedPasswordMethod.



16945
16946
16947
16948
16949
16950
16951
# File 'lib/quickfix_fields.rb', line 16945

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

Class Method Details

.fieldObject



16942
16943
16944
# File 'lib/quickfix_fields.rb', line 16942

def EncryptedPasswordMethod.field
  return 1400
end