/* $Id$ */ package org.noreply.fancydress.type3; import org.noreply.fancydress.crypto.*; import org.noreply.fancydress.status.*; import org.noreply.fancydress.directory.*; import org.noreply.fancydress.misc.Util; import org.noreply.fancydress.type3.routing.*; import java.net.InetAddress; public class Path { HalfPath first; HalfPath second; public Path(Hop[] leg1, Hop[] leg2) { first = new HalfPath(leg1); second = new HalfPath(leg2); } public HalfPath getFirstHalf() { return first; } public HalfPath getSecondHalf() { return second; } }