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

com.yy.androidlib.websocket.Config Maven / Gradle / Ivy

The newest version!
package com.yy.androidlib.websocket;

public class Config {

    private String cannotConnectToServerTips = "无法连接服务器!";
    private String serverDataParseErrorTips = "解析服务器数据失败!";
    private String serverReplyTimeOutTips = "解析服务器数据失败!";
    private long serverReplyTimeOut = 10000L;

    public String getCannotConnectToServerTips() {
        return cannotConnectToServerTips;
    }

    public void setCannotConnectToServerTips(String cannotConnectToServerTips) {
        this.cannotConnectToServerTips = cannotConnectToServerTips;
    }

    public String getServerDataParseErrorTips() {
        return serverDataParseErrorTips;
    }

    public void setServerDataParseErrorTips(String serverDataParseErrorTips) {
        this.serverDataParseErrorTips = serverDataParseErrorTips;
    }

    public String getServerReplyTimeOutTips() {
        return serverReplyTimeOutTips;
    }

    public void setServerReplyTimeOutTips(String serverReplyTimeOutTips) {
        this.serverReplyTimeOutTips = serverReplyTimeOutTips;
    }

    public long getServerReplyTimeOut() {
        return serverReplyTimeOut;
    }

    public void setServerReplyTimeOut(long serverReplyTimeOut) {
        this.serverReplyTimeOut = serverReplyTimeOut;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy