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.



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

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.



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

def is_fault
  @is_fault
end

#is_nocontentObject

Returns the value of attribute is_nocontent.



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

def is_nocontent
  @is_nocontent
end

#receive_contenttypeObject

Returns the value of attribute receive_contenttype.



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

def receive_contenttype
  @receive_contenttype
end

#receive_stringObject

Returns the value of attribute receive_string.



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

def receive_string
  @receive_string
end

#send_contenttypeObject

Returns the value of attribute send_contenttype.



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

def send_contenttype
  @send_contenttype
end

#send_stringObject

Returns the value of attribute send_string.



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

def send_string
  @send_string
end

#soapactionObject

Returns the value of attribute soapaction.



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

def soapaction
  @soapaction
end