Class | Core::Providers::Interfaceerator::Provider |
In: |
core/serviceproviders/interfaceerator.rb
|
Parent: | Object |
Interfaceerator is the module that translates from XML into property objects. These can be used by the View to present the user with the options as the creator defines them in universe.xml.
Given a hash containing extended information for a node, this method returns an XML string representing it. The expected parameters are:
All parameters are required.
# File core/serviceproviders/interfaceerator.rb, line 35 def service_interfaceerator_to_xml(*args) if (args.size != 1) raise ServiceRequestInvalidArgumentError.new('Invalid parameters. Required parameters: extended_info') end info = args[0] info.to_xml(:root => 'extendednode') end