package com.c2kernel.lifecycle.instance.stateMachine; public class TransitionOutcome extends TransitionResource { // schema properties String schemaName, schemaVersion; // Name & version of the schema of the data required for this transition. boolean required = true; // If true, then the data must be supplied to perform the transition, otherwise it is optional public TransitionOutcome() { } public String getSchemaName() { return schemaName; } public void setSchemaName(String schemaName) { this.schemaName = schemaName; } public String getSchemaVersion() { return schemaVersion; } public void setSchemaVersion(String schemaVersion) { this.schemaVersion = schemaVersion; } public boolean isRequired() { return required; } public void setRequired(boolean required) { this.required = required; } }