This package provides all classes that are used by the web-interface of the BIC-GH web-platform. This includes The platform uses a configuration file, which must be located at \/etc\/bicgh.platform.conf.
This configuration file is in XML-format with the following document-type-definition: The classifiers avaiable in the platform:

<!ELEMENT  classifiers (classifier*)>
 <!ELEMENT classifier  (class-name,parameter-class-name)>
For each classifier the class of the classifier, which must be a subclass of StorableAbstractClassifier, and the class of the ParameterSet that is used by this class must be provided.
The concept is the same for model, where class-name must be a subclass of StorableAbstractModel, task, inputDataSource, classifierSource, and modelSource. Each of these elements corresponds to an interface or abstract class with the same name and upper-case first letter:
  <!ELEMENT class-name (#PCDATA)>
  <!ELEMENT parameter-class-name  (#PCDATA)>
<!ELEMENT models (model*)>
 <!ELEMENT  model  (class-name,parameter-class-name)>
  <!ELEMENT class-name (#PCDATA)>
  <!ELEMENT parameter-class-name  (#PCDATA)>
<!ELEMENT tasks (task*)>
 <!ELEMENT task (class-name,parameter-class-name)>
  <!ELEMENT class-name (#PCDATA)>
  <!ELEMENT parameter-class-name  (#PCDATA)>
<!ELEMENT inputDataSources (inputDataSource*)>
 <!ELEMENT inputDataSource (class-name,parameter-class-name)>
  <!ELEMENT class-name (#PCDATA)>
  <!ELEMENT parameter-class-name  (#PCDATA)>
<!ELEMENT classifierSources (classifierSource*)>
 <!ELEMENT classsifierSource (class-name,parameter-class-name)>
  <!ELEMENT class-name (#PCDATA)>
  <!ELEMENT parameter-class-name  (#PCDATA)>
<!ELEMENT modelSources (modelSource*)>
 <!ELEMENT modelSource (class-name,parameter-class-name)>
  <!ELEMENT class-name (#PCDATA)>
  <!ELEMENT parameter-class-name  (#PCDATA)>
The definition of the SQL-connection: <!ELEMENT sql-driver (blob-stream,clob-stream,driver,url,login,password)>
This element must have value true if the database uses streams for CLOBs, and false otherwise:
 <!ELEMENT clob-stream (#PCDATA)>
The name of the class of the SQL-driver:
 <!ELEMENT driver (#PCDATA)>
The connection-URL without login and password:
 <!ELEMENT url (#PCDATA)>
The login and password for the platform-database-user
 <!ELEMENT login (#PCDATA)>
 <!ELEMENT password (#PCDATA)>