thingynet.workflow.WorkflowNode.java Source code

Java tutorial

Introduction

Here is the source code for thingynet.workflow.WorkflowNode.java

Source

/*
 * WorkflowNode.java
 *
 * Copyright 2014 Jason Crossley
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package thingynet.workflow;

import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.jongo.marshall.jackson.oid.Id;

import static org.apache.commons.lang3.builder.ToStringStyle.SHORT_PREFIX_STYLE;

public class WorkflowNode {

    @Id
    private String name;

    // next in node or 'null' if end of node
    private String next;

    public WorkflowNode() {
    }

    public WorkflowNode(String name, String next) {
        this.name = name;
        this.next = next;
    }

    public String getNext() {
        return this.next;
    }

    public void setNext(String next) {
        this.next = next;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String toString() {
        return ReflectionToStringBuilder.toString(this, SHORT_PREFIX_STYLE);
    }
}