org.kurento.client.CodecConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-client Show documentation
Show all versions of kurento-client Show documentation
Kurento Client
The Kurento Client project allows server applications to control media server resources.
/**
* This file is generated with Kurento ktool-rom-processor.
* Please don't edit. Changes should go to kms-interface-rom and
* ktool-rom-processor templates.
*/
package org.kurento.client;
/**
*
* Defines specific configuration for codecs
*
**/
@org.kurento.client.internal.ModuleName ("kurento")
public class CodecConfiguration {
/**
*
* Name of the codec. Must follow this format: /[/]
*
**/
private String name;
/**
*
* String used for tuning codec properties
*
**/
private java.util.Map properties;
/**
*
* Create a CodecConfiguration
*
**/
public CodecConfiguration() {
super();
}
/**
*
* get Name of the codec. Must follow this format: /[/]
*
**/
public String getName(){
return name;
}
/**
*
* set Name of the codec. Must follow this format: /[/]
*
**/
public void setName(String name){
this.name = name;
}
/**
*
* get String used for tuning codec properties
*
**/
public java.util.Map getProperties(){
return properties;
}
/**
*
* set String used for tuning codec properties
*
**/
public void setProperties(java.util.Map properties){
this.properties = properties;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy