Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/27/10 11:16:22 (14 years ago)
Author:
mholper
Message:

added some Implementation as Ids

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKBJavaConnector/HLOKBWebClient/src/main/java/at/hl/okb/IECJConnector.java

    r4961 r4963  
    1010 */
    1111public interface IECJConnector {
    12   public void initialize(String algorithm, String platform, Map<String, String> algoParams, Map<String,String>problemParams, Object paramFile) throws Exception;
     12  /**
     13   * Does some logical Check against HL
     14   * create missing Datatypes (if not found)
     15   * saves algorithmParams, problemParams into HL
     16   *
     17   * @param algorithm Name of the Algorithm
     18   * @param platform Name of the Platform
     19   * @param problem Name of the Problem
     20   * @param algoParams map<AlgoParamname, Paramvalue> (as JavaType)
     21   * @param problemParams map<problemParamName, Paramvalue> (as JavaType)
     22   * @param paramFile as Object (will be saved as BLOB)
     23   * @throws Exception
     24   */
     25  public void initialize(String algorithm, String platform, String problem, Map<String, Object> algoParams, Map<String,Object> problemParams, Object paramFile) throws Exception;
    1326
     27  /**
     28   * delivers Results to HL
     29   * @param resultList
     30   * @throws Exception
     31   */
    1432  public void result(List<Object> resultList) throws Exception;
    1533}
Note: See TracChangeset for help on using the changeset viewer.