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

com.joker17.bizactuator.context.BizSimpleContext Maven / Gradle / Ivy

The newest version!
package com.joker17.bizactuator.context;

/**
 * 简单业务上下文
 *
 * @param  data object class
 */
public class BizSimpleContext implements BizContext {

    private static final long serialVersionUID = 171572168099278456L;

    /**
     * 数据对象
     */
    private T dataObject;

    public T getDataObject() {
        return dataObject;
    }

    public void setDataObject(T dataObject) {
        this.dataObject = dataObject;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy