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

de.sekmi.li2b2.services.impl.pm.ParamImpl Maven / Gradle / Ivy

Go to download

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy