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_.



146
147
148
149
# File 'lib/soap/mapping/factory.rb', line 146

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

Instance Method Details

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



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/soap/mapping/factory.rb', line 151

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



168
169
170
171
172
# File 'lib/soap/mapping/factory.rb', line 168

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