/** * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.easemob.chatuidemo.domain; import com.easemob.chat.EMContact; public class User extends EMContact { private int unreadMsgCount;// 未读信息条数 private String header; private String namePinyin;// 转化为拼音 用户昵称 排序需要 加 public String getNamePinyin() { return namePinyin; } public void setNamePinyin(String namePinyin) { this.namePinyin = namePinyin; } public String getHeader() { return header; } public void setHeader(String header) { this.header = header; } public int getUnreadMsgCount() { return unreadMsgCount; } public void setUnreadMsgCount(int unreadMsgCount) { this.unreadMsgCount = unreadMsgCount; } @Override public int hashCode() { return 17 * getUsername().hashCode(); } @Override public boolean equals(Object o) { if (o == null || !(o instanceof User)) { return false; } return getUsername().equals(((User) o).getUsername()); } @Override public String toString() { return nick == null ? username : nick; } }