Class: Quickfix::EncryptedNewPassword

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

Returns a new instance of EncryptedNewPassword.



864
865
866
867
868
869
870
# File 'lib/quickfix_fields.rb', line 864

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

Class Method Details

.fieldObject



861
862
863
# File 'lib/quickfix_fields.rb', line 861

def EncryptedNewPassword.field
	return 1404
end