NIMSDK-AOS  9.19.0
AVChatServerAddresses.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat.model;
7 
8 /**
9  * 私有化服务器配置项
10  */
11 public class AVChatServerAddresses {
12 
13  /**
14  * 网络探测服务器
15  */
16  public String netDetectServer;
17 
18  /**
19  * 统计上报服务器
20  */
21  public String statisticsServer;
22 
23  /**
24  * 功能打点服务器
25  */
26  public String functionServer;
27 
28  /**
29  * roomServer服务器
30  */
31  public String roomServer;
32 
33  /**
34  * 兼容性配置服务器
35  */
36  public String compatServer;
37 
38 
39  /**
40  * nos lbs 服务器
41  */
42  public String nosLbsServer;
43 
44 
45  /**
46  * 默认nos 上传服务器
47  */
48  public String nosDefaultUploadSever;
49 
50 
51  /**
52  * 获取NOS token 服务器
53  */
54  public String nosTokenServer;
55 
56  /**
57  * 重新登陆拉取配置地址
58  */
59  public String reLoginConfigServer;
60 
61 
62  /**
63  * 事件上报服务器地址
64  */
65  public String eventReportServer;
66 }