/** * Retrieves the MsnObject (avatar) for the contact. * * @return MsnObject instance for the avatar of the contact. */ public MsnObject getMsnObject() { String object = getParam(4); if (object != null) { return MsnObject.parseMsnObject(StringUtils.urlDecode(object)); } return null; }
/** * Retrieves the contact display name. * * @return Conatact display name. */ public String getDisplayName() { return StringUtils.urlDecode(getParam(2)); }