All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kurento.client.CodecConfiguration Maven / Gradle / Ivy

Go to download

Kurento Client The Kurento Client project allows server applications to control media server resources.

There is a newer version: 7.1.0
Show newest version
/**
 * 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 defined as /[/]
 *
 **/
    private String name;
/**
 *
 * String used for tuning codec properties
 *
 **/
    private java.util.Map properties;

/**
 *
 * Create a CodecConfiguration
 *
 **/
    public CodecConfiguration(@org.kurento.client.internal.server.Param("name") String name) {

	super();

        this.name = name;
    }

/**
 *
 * get Name of the codec defined as /[/]
 *
 **/
    public String getName(){
    	return name;
    }

/**
 *
 * set Name of the codec defined as /[/]
 *
 **/
    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