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.



33
34
35
36
37
38
39
40
# File 'lib/soap/streamHandler.rb', line 33

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

Instance Attribute Details

#is_faultObject

Returns the value of attribute is_fault.



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

def is_fault
  @is_fault
end

#receive_contenttypeObject

Returns the value of attribute receive_contenttype.



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

def receive_contenttype
  @receive_contenttype
end

#receive_stringObject

Returns the value of attribute receive_string.



28
29
30
# File 'lib/soap/streamHandler.rb', line 28

def receive_string
  @receive_string
end

#send_contenttypeObject

Returns the value of attribute send_contenttype.



27
28
29
# File 'lib/soap/streamHandler.rb', line 27

def send_contenttype
  @send_contenttype
end

#send_stringObject

Returns the value of attribute send_string.



26
27
28
# File 'lib/soap/streamHandler.rb', line 26

def send_string
  @send_string
end

#soapactionObject

Returns the value of attribute soapaction.



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

def soapaction
  @soapaction
end