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

de.sekmi.li2b2.services.Cell 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;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface Cell {

	String id();
	String name() default "";
	String description() default "";
	String version() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy