summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/virtualization/configuration/transformation/Transformation.java
blob: af0e1819f0cea6736834446aa1292d75dfe3140c (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package org.openslx.virtualization.configuration.transformation;

/**
 * Represents a transformation that transforms (alters) a given configuration with specified input
 * arguments.
 * 
 * @author Manuel Bentele
 * @version 1.0
 *
 * @param <T> type of the configuration which will be transformed.
 * @param <R> type of input arguments for the transformation.
 */
public abstract class Transformation<T, R> implements TransformationFunction<T, R>
{
	/**
	 * Name of the transformation.
	 */
	private final String name;

	/**
	 * State of the transformation.
	 */
	private boolean enabled;

	/**
	 * Creates a transformation.
	 * 
	 * @param name comprehensible name for the transformation.
	 */
	public Transformation( String name )
	{
		this.name = name;
		this.setEnabled( true );
	}

	/**
	 * Returns the name of the transformation.
	 * 
	 * @return name of the transformation.
	 */
	public String getName()
	{
		return this.name;
	}

	/**
	 * Returns the state of the transformation.
	 * 
	 * @return state of the transformation.
	 */
	public boolean isEnabled()
	{
		return this.enabled;
	}

	/**
	 * Sets the state for the transformation.
	 * 
	 * @param enabled state for the transformation.
	 */
	public void setEnabled( boolean enabled )
	{
		this.enabled = enabled;
	}
}