blob: f74788ddc873a5022408ff64997c0c7013842143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.c2kernel.process.module;
import java.util.ArrayList;
import java.util.HashMap;
import com.c2kernel.lifecycle.instance.predefined.entitycreation.Aggregation;
import com.c2kernel.lifecycle.instance.predefined.entitycreation.Dependency;
import com.c2kernel.lifecycle.instance.predefined.entitycreation.Property;
public class ModuleItem extends ModuleImport {
ArrayList<Property> props = new ArrayList<Property>();
HashMap<String, String> outcomes = new HashMap<String, String>();
ArrayList<Dependency> deps = new ArrayList<Dependency>();
ArrayList<Aggregation> aggs = new ArrayList<Aggregation>();
String workflow;
String initialPath;
}
|