summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/virtualization/configuration/data/ConfigurationDataDozModServerToDozModClient.java
blob: c1ae37a7560444805333c8cea2393fbb87514d64 (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
38
39
40
41
42
43
44
45
46
47
48
49
package org.openslx.virtualization.configuration.data;

import java.io.File;

import org.openslx.bwlp.thrift.iface.OperatingSystem;

public class ConfigurationDataDozModServerToDozModClient
{
	private final String displayName;
	private final File diskImage;
	private final OperatingSystem guestOs;
	private final String virtualizerId;
	private final int totalMemory;

	public ConfigurationDataDozModServerToDozModClient( String displayName, File diskImage, OperatingSystem guestOs,
			String virtualizerId, int totalMemory )
	{
		this.displayName = displayName;
		this.diskImage = diskImage;
		this.guestOs = guestOs;
		this.virtualizerId = virtualizerId;
		this.totalMemory = totalMemory;
	}

	public String getDisplayName()
	{
		return this.displayName;
	}

	public File getDiskImage()
	{
		return this.diskImage;
	}

	public OperatingSystem getGuestOs()
	{
		return this.guestOs;
	}

	public String getVirtualizerId()
	{
		return this.virtualizerId;
	}

	public int getTotalMemory()
	{
		return this.totalMemory;
	}
}