org.kurento.client.ModuleInfo 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;
/**
*
* Description of a loaded modules
*
**/
@org.kurento.client.internal.ModuleName ("kurento")
public class ModuleInfo {
/**
*
* Module version
*
**/
private String version;
/**
*
* Module name
*
**/
private String name;
/**
*
* Time that this module was generated
*
**/
private String generationTime;
/**
*
* Module available factories
*
**/
private java.util.List factories;
/**
*
* Create a ModuleInfo
*
**/
public ModuleInfo(@org.kurento.client.internal.server.Param("version") String version, @org.kurento.client.internal.server.Param("name") String name, @org.kurento.client.internal.server.Param("generationTime") String generationTime, @org.kurento.client.internal.server.Param("factories") java.util.List factories) {
super();
this.version = version;
this.name = name;
this.generationTime = generationTime;
this.factories = factories;
}
/**
*
* get Module version
*
**/
public String getVersion(){
return version;
}
/**
*
* set Module version
*
**/
public void setVersion(String version){
this.version = version;
}
/**
*
* get Module name
*
**/
public String getName(){
return name;
}
/**
*
* set Module name
*
**/
public void setName(String name){
this.name = name;
}
/**
*
* get Time that this module was generated
*
**/
public String getGenerationTime(){
return generationTime;
}
/**
*
* set Time that this module was generated
*
**/
public void setGenerationTime(String generationTime){
this.generationTime = generationTime;
}
/**
*
* get Module available factories
*
**/
public java.util.List getFactories(){
return factories;
}
/**
*
* set Module available factories
*
**/
public void setFactories(java.util.List factories){
this.factories = factories;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy