| | |
| | | //app当前的语言 |
| | | private String currentAppLanguage; |
| | | |
| | | |
| | | /// <summary> |
| | | /// 注册极光ID |
| | | /// </summary> |
| | | public String registrationID; |
| | | /// <summary> |
| | | /// 添加极光ID到云端成功时返回的 |
| | | /// </summary> |
| | | public String pushId; |
| | | |
| | | |
| | | public String getRegistrationID() { |
| | | return registrationID == null ? "" : registrationID; |
| | | } |
| | | |
| | | public void setRegistrationID(String registrationID) { |
| | | this.registrationID = registrationID; |
| | | } |
| | | |
| | | public String getPushId() { |
| | | return pushId == null ? "" : pushId; |
| | | } |
| | | |
| | | public void setPushId(String pushId) { |
| | | this.pushId = pushId; |
| | | } |
| | | |
| | | public String getCurrentAppLanguage() { |
| | | return currentAppLanguage; |
| | | } |