summaryrefslogtreecommitdiffstats
path: root/core/modules/qemu/runvirt-plugin-qemu/src/main/java/org/openslx/runvirt/configuration/FilterSpecific.java
blob: 8cff83bdeda691f8a1c106012a496f0c4e9818ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.openslx.runvirt.configuration;

public abstract class FilterSpecific<T, R, H> extends Filter<T, R>
{
	private final H hypervisor;

	public FilterSpecific( String name, H hypervisor )
	{
		super( name );

		this.hypervisor = hypervisor;
	}

	public H getHypervisor()
	{
		return this.hypervisor;
	}
}