class Kaltura::KalturaBusinessProcessNotificationTemplate

Attributes

main_object_code[RW]

Code to load the main triggering object

process_id[RW]

Define the integrated BPM process id

server_id[RW]

Define the integrated BPM server id

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 202
def from_xml(xml_element)
        super
        if xml_element.elements['serverId'] != nil
                self.server_id = xml_element.elements['serverId'].text
        end
        if xml_element.elements['processId'] != nil
                self.process_id = xml_element.elements['processId'].text
        end
        if xml_element.elements['mainObjectCode'] != nil
                self.main_object_code = xml_element.elements['mainObjectCode'].text
        end
end
server_id=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 198
def server_id=(val)
        @server_id = val.to_i
end