io.gitee.huangguiming.Imcode.imconfig.IMDefaultConfigImpl Maven / Gradle / Ivy
package io.gitee.huangguiming.Imcode.imconfig;
import io.gitee.huangguiming.Imcode.utils.ApacheHttpClientBuilder;
import lombok.Data;
@Data
public class IMDefaultConfigImpl implements IMConfigStorage{
protected volatile long sdkappid;
protected volatile String secretKey;
protected volatile long expiresTime;
protected volatile String admin;
protected volatile String httpProxyHost;
protected volatile int httpProxyPort;
protected volatile String httpProxyUsername;
protected volatile String httpProxyPassword;
protected volatile int retrySleepMillis = 1000;
protected volatile int maxRetryTimes = 5;
protected volatile ApacheHttpClientBuilder apacheHttpClientBuilder;
}