/* $Id$ */ package org.noreply.fancydress.type3; import org.noreply.fancydress.type3.routing.*; import org.noreply.fancydress.crypto.*; public class Hop { private Routing routing; private RSAPublicKey pubKey; public Hop(Routing routing, RSAPublicKey pubKey) { this.routing = routing; this.pubKey = pubKey; } public Routing getRouting() { return routing; } public RSAPublicKey getPubKey() { return pubKey; } }