package eu.dnetlib.dhp.common.java; import java.util.Map; import eu.dnetlib.dhp.common.java.porttype.PortType; /** * A class that groups information about input and output ports, i.e. * their (name of the port -> type of the port) mappings. * @author Mateusz Kobos */ public class Ports { private final Map input; private final Map output; public Ports(Map input, Map output){ this.input = input; this.output = output; } public Map getInput() { return input; } public Map getOutput() { return output; } }