Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/RunCreationService/src/com/heurisitclab/okb/service/runcreation/Algorithm.java @ 6151

Last change on this file since 6151 was 6151, checked in by bfarka, 13 years ago

added util for accessing service #1441

File size: 424 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package com.heurisitclab.okb.service.runcreation;
7
8/**
9 *
10 * @author fab
11 */
12public class Algorithm {
13
14    private Long id;
15    private String name;
16   
17
18    public Algorithm(com.heuristiclab.services.runcreation.Algorithm algo)
19    {
20        id = algo.getId();
21        name = algo.getName().getValue();
22       
23    }
24
25
26}
Note: See TracBrowser for help on using the repository browser.