Package com.sissi.protocol.iq.vcard.field

Examples of com.sissi.protocol.iq.vcard.field.Photo


*/
public class PhotoFieldParser implements FieldParser<Map<String, Object>> {

  @Override
  public Field<?> read(Map<String, Object> element) {
    return new Photo(element.get(Type.NAME).toString(), element.get(Binval.NAME).toString());
  }
View Full Code Here

TOP

Related Classes of com.sissi.protocol.iq.vcard.field.Photo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.