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

net.guerlab.sdk.wx.response.AbstractResponse Maven / Gradle / Ivy

The newest version!
package net.guerlab.sdk.wx.response;

/**
 * 抽象响应对象
 * 
 * @author guer
 *
 * @param 
 *            响应数据类型
 */
public abstract class AbstractResponse {

    /**
     * 数据
     */
    private T data;

    /**
     * 获取数据
     * 
     * @return 数据
     */
    public final T getData() {
        return data;
    }

    /**
     * 设置数据
     * 
     * @param data
     *            数据
     */
    public final void setData(
            T data) {
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy