Class: WsdlMapper::SvcDesc::Wsdl11::Binding::Header

Inherits:
HeaderBase
  • Object
show all
Defined in:
lib/wsdl_mapper/svc_desc/wsdl11/binding.rb

Instance Attribute Summary (collapse)

Attributes inherited from HeaderBase

#encoding_styles, #message, #message_name, #namespace, #part, #part_name, #use

Instance Method Summary (collapse)

Methods inherited from HeaderBase

#encoded?, #literal?

Constructor Details

- (Header) initialize

Returns a new instance of Header



77
78
79
# File 'lib/wsdl_mapper/svc_desc/wsdl11/binding.rb', line 77

def initialize
  @header_faults = []
end

Instance Attribute Details

- (Object) header_faults (readonly)

Returns the value of attribute header_faults



75
76
77
# File 'lib/wsdl_mapper/svc_desc/wsdl11/binding.rb', line 75

def header_faults
  @header_faults
end

Instance Method Details

- (Object) add_header_fault(header_fault)



81
82
83
# File 'lib/wsdl_mapper/svc_desc/wsdl11/binding.rb', line 81

def add_header_fault(header_fault)
  @header_faults << header_fault
end

- (Object) each_header_fault(&block)



85
86
87
# File 'lib/wsdl_mapper/svc_desc/wsdl11/binding.rb', line 85

def each_header_fault(&block)
  @header_faults.each &block
end