All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cmt.statemachine.impl.DefaultStateAwareImpl Maven / Gradle / Ivy

The newest version!
package com.cmt.statemachine.impl;

import com.cmt.statemachine.StateAware;

/**
 * @author tuzhenxian
 * @date 20-6-28
 */
public class DefaultStateAwareImpl implements StateAware {
    private S next;

    @Override
    public void setNextState(S next) {
        this.next = next;
    }

    public S getNext() {
        return next;
    }
}