summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/dnbd3/status/rpc/Image.java
blob: 910db8286aa2a07f3f9f3cc6914a154ffc265e29 (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
32
33
34
35
36
37
package org.openslx.dnbd3.status.rpc;

public class Image
{

	private String name = null;
	private int rid = -1;
	private int complete = -1;
	private int users = -1;

	public String getName()
	{
		return name;
	}

	public int getRid()
	{
		return rid;
	}

	public int getComplete()
	{
		return complete;
	}

	public int getUsers()
	{
		return users;
	}

	@Override
	public String toString()
	{
		return "[" + name + " (users: " + users + ")]";
	}

}