/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.heurisitclab.okb.service.runcreation; /** * * @author fab */ public class Algorithm { private Long id; private String name; public Algorithm(com.heuristiclab.services.runcreation.Algorithm algo) { id = algo.getId(); name = algo.getName().getValue(); } }