blob: c0e62eca4cae5484bff27f4595fc977fcbd60fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package com.c2kernel.lifecycle.instance.predefined.entitycreation;
public class Outcome {
public String schema, viewname, path;
public int version;
public Outcome() {
}
public Outcome(String schema, String version, String viewname, String path) {
super();
this.schema = schema;
this.version = Integer.parseInt(version);
this.viewname = viewname;
this.path = path;
}
}
|