15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/adiwg/mdtranslator/readers/mdJson/modules/module_series.rb', line 15
def self.unpack(hSeries, responseObj, inContext = nil)
@MessagePath = ADIWG::Mdtranslator::Readers::MdJson::MdJson
if hSeries.empty?
@MessagePath.issueWarning(760, responseObj, inContext)
return nil
end
intMetadataClass = InternalMetadata.new
intSeries = intMetadataClass.newSeries
if hSeries.has_key?('seriesName')
unless hSeries['seriesName'] == ''
intSeries[:seriesName] = hSeries['seriesName']
end
end
if hSeries.has_key?('seriesIssue')
unless hSeries['seriesIssue'] == ''
intSeries[:seriesIssue] = hSeries['seriesIssue']
end
end
if hSeries.has_key?('issuePage')
unless hSeries['issuePage'] == ''
intSeries[:issuePage] = hSeries['issuePage']
end
end
return intSeries
end
|