Class: SOAP::Mapping::BasetypeFactory_

Inherits:
Factory show all
Defined in:
lib/soap/mapping/factory.rb

Instance Method Summary collapse

Methods inherited from Factory

#setiv2obj, #setiv2soap

Methods included from TraverseSupport

#mark_marshalled_obj, #mark_unmarshalled_obj

Constructor Details

#initialize(allow_original_mapping = false) ⇒ BasetypeFactory_

Returns a new instance of BasetypeFactory_.



130
131
132
133
# File 'lib/soap/mapping/factory.rb', line 130

def initialize(allow_original_mapping = false)
  super()
  @allow_original_mapping = allow_original_mapping
end

Instance Method Details

#obj2soap(soap_class, obj, info, map) ⇒ Object



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/soap/mapping/factory.rb', line 135

def obj2soap(soap_class, obj, info, map)
  if !@allow_original_mapping and !obj.instance_variables.empty?
    return nil
  end
  soap_obj = nil
  begin
    soap_obj = soap_class.new(obj)
  rescue XSD::ValueSpaceError
    return nil
  end
  if @allow_original_mapping
    # Basetype except String should not be multiref-ed in SOAP/1.1.
    mark_marshalled_obj(obj, soap_obj)
  end
  soap_obj
end

#soap2obj(obj_class, node, info, map) ⇒ Object



152
153
154
155
156
# File 'lib/soap/mapping/factory.rb', line 152

def soap2obj(obj_class, node, info, map)
  obj = node.data
  mark_unmarshalled_obj(node, obj)
  return true, obj
end