Class: Kaltura::KalturaMatchMetadataCondition

Inherits:
KalturaMatchCondition show all
Defined in:
lib/kaltura_plugins/kaltura_metadata_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaMatchCondition

#match_type, #values

Attributes inherited from KalturaCondition

#description, #not, #type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#profile_idObject

Metadata profile id



569
570
571
# File 'lib/kaltura_plugins/kaltura_metadata_client_plugin.rb', line 569

def profile_id
  @profile_id
end

#profile_system_nameObject

Metadata profile system name



571
572
573
# File 'lib/kaltura_plugins/kaltura_metadata_client_plugin.rb', line 571

def profile_system_name
  @profile_system_name
end

#x_pathObject

May contain the full xpath to the field in three formats 1. Slashed xPath, e.g. /metadata/myElementName 2. Using local-name function, e.g. /[local-name()=‘metadata’]/ 3. Using only the field name, e.g. myElementName, it will be searched as //myElementName



567
568
569
# File 'lib/kaltura_plugins/kaltura_metadata_client_plugin.rb', line 567

def x_path
  @x_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



577
578
579
580
581
582
583
584
585
586
587
588
# File 'lib/kaltura_plugins/kaltura_metadata_client_plugin.rb', line 577

def from_xml(xml_element)
	super
	if xml_element.elements['xPath'] != nil
		self.x_path = xml_element.elements['xPath'].text
	end
	if xml_element.elements['profileId'] != nil
		self.profile_id = xml_element.elements['profileId'].text
	end
	if xml_element.elements['profileSystemName'] != nil
		self.profile_system_name = xml_element.elements['profileSystemName'].text
	end
end