summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/Hop.java
blob: 181d2e81e68d02ec46d28859445edab4742bace4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* $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;
	}
}