de.sekmi.li2b2.services.impl.pm.ParamImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of li2b2-server Show documentation
Show all versions of li2b2-server Show documentation
This project emulates the core components
of an i2b2 server backend. Basic functionality
of PM, CRC, ONT and WORK cells allows the
official i2b2 webclient to connect ot this
emulated server.
The newest version!
package de.sekmi.li2b2.services.impl.pm;
import de.sekmi.li2b2.api.pm.Parameter;
import de.sekmi.li2b2.hive.pm.Param;
public class ParamImpl extends Param implements Parameter{
public ParamImpl(String name, String value) {
super(name,value);
}
public ParamImpl(String name, String type, String value) {
super(name,value);
this.datatype = type;
}
/**
* Empty constructor for JAXB
*/
protected ParamImpl() {
}
@Override
public String getName() {
return this.name;
}
@Override
public String getValue() {
return this.value;
}
@Override
public String getDatatype() {
return this.datatype;
}
}