blob: 271b44d8fa00968e62e9a478988af1935a9177ba (
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
28
29
|
package com.c2kernel.lifecycle.instance.stateMachine;
import java.io.Serializable;
public class TransitionScript extends TransitionResource implements Serializable {
// 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;
}
}
|