summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/dnbd3/status/rpc/Client.java
blob: fcb8e3ed3e126c88f565d2f0577b0576ab562b3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.openslx.dnbd3.status.rpc;

public class Client
{

	private String address = null;
	private int imageId = -1;
	private long bytesSent = -1;

	public String getAddress()
	{
		return address;
	}

	public int getImageId()
	{
		return imageId;
	}

	public long getBytesSent()
	{
		return bytesSent;
	}

	@Override
	public String toString()
	{
		return "[Addr: " + address + ", image: " + imageId + "]";
	}

}