Class: Quickfix::EncryptedPasswordLen

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) ⇒ EncryptedPasswordLen

Returns a new instance of EncryptedPasswordLen.



825
826
827
828
829
830
831
# File 'lib/quickfix_fields.rb', line 825

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

Class Method Details

.fieldObject



822
823
824
# File 'lib/quickfix_fields.rb', line 822

def EncryptedPasswordLen.field
	return 1401
end