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; } }