Class: SOAP::StreamHandler::ConnectionData

Inherits:
Object
  • Object
show all
Defined in:
lib/soap/streamHandler.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(send_string = nil) ⇒ ConnectionData

Returns a new instance of ConnectionData.



38
39
40
41
42
43
44
45
46
# File 'lib/soap/streamHandler.rb', line 38

def initialize(send_string = nil)
  @send_string = send_string
  @send_contenttype = nil
  @receive_string = nil
  @receive_contenttype = nil
  @is_fault = false
  @is_nocontent = false
  @soapaction = nil
end

Instance Attribute Details

#is_faultObject

Returns the value of attribute is_fault.



34
35
36
# File 'lib/soap/streamHandler.rb', line 34

def is_fault
  @is_fault
end

#is_nocontentObject

Returns the value of attribute is_nocontent.



35
36
37
# File 'lib/soap/streamHandler.rb', line 35

def is_nocontent
  @is_nocontent
end

#receive_contenttypeObject

Returns the value of attribute receive_contenttype.



33
34
35
# File 'lib/soap/streamHandler.rb', line 33

def receive_contenttype
  @receive_contenttype
end

#receive_stringObject

Returns the value of attribute receive_string.



32
33
34
# File 'lib/soap/streamHandler.rb', line 32

def receive_string
  @receive_string
end

#send_contenttypeObject

Returns the value of attribute send_contenttype.



31
32
33
# File 'lib/soap/streamHandler.rb', line 31

def send_contenttype
  @send_contenttype
end

#send_stringObject

Returns the value of attribute send_string.



30
31
32
# File 'lib/soap/streamHandler.rb', line 30

def send_string
  @send_string
end

#soapactionObject

Returns the value of attribute soapaction.



36
37
38
# File 'lib/soap/streamHandler.rb', line 36

def soapaction
  @soapaction
end