class Kaltura::KalturaFairplayEntryContextPluginData

Attributes

public_certificate[RW]

For fairplay (and maybe in the future other drm providers) we need to return a public certificate to encrypt

the request from the player to the server.

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_fairplay_client_plugin.rb, line 52
def from_xml(xml_element)
        super
        if xml_element.elements['publicCertificate'] != nil
                self.public_certificate = xml_element.elements['publicCertificate'].text
        end
end