blob: 958510268ae923fef4e112e0cfd6a1be6cd370d2 (
plain)
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
|
package com.c2kernel.lifecycle.instance.stateMachine;
public class TransitionScript extends TransitionResource {
// script properties
String scriptName, scriptVersion; // Name & version of the script to be run by the agent during this transition
public TransitionScript() {
}
public String getScriptName() {
return scriptName;
}
public void setScriptName(String scriptName) {
this.scriptName = scriptName;
}
public String getScriptVersion() {
return scriptVersion;
}
public void setScriptVersion(String scriptVersion) {
this.scriptVersion = scriptVersion;
}
}
|