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

com.riversoft.weixin.qy.base.AgentSetting Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.qy.base;

/**
 * Created by exizhai on 9/26/2015.
 */
public class AgentSetting {

    private String name;
    private int agentId;
    private String callbackUrl;
    private String token;
    private String aesKey;

    public String getName() {
        return name;
    }

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

    public int getAgentId() {
        return agentId;
    }

    public void setAgentId(int agentId) {
        this.agentId = agentId;
    }

    public String getCallbackUrl() {
        return callbackUrl;
    }

    public void setCallbackUrl(String callbackUrl) {
        this.callbackUrl = callbackUrl;
    }

    public String getToken() {
        return token;
    }

    public void setToken(String token) {
        this.token = token;
    }

    public String getAesKey() {
        return aesKey;
    }

    public void setAesKey(String aesKey) {
        this.aesKey = aesKey;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy