package com.ved.musicmapapp.Objects; import java.io.Serializable; public class Friend implements Serializable{ /** * */ private static final long serialVersionUID = 1L; private int idAuto; private String fbid, name, fbidF; private byte[] avatar; public Friend() { // TODO Auto-generated constructor stub } public Friend(int idAuto, String fbid, String name, String fbidF, byte[] avatar) { this.idAuto = idAuto; this.fbid = fbid; this.name = name; this.fbidF = fbidF; this.avatar = avatar; } /** * @return the fbidF */ public String getFbidF() { return fbidF; } /** * @param fbidF the fbidF to set */ public void setFbidF(String fbidF) { this.fbidF = fbidF; } /** * @return the idAuto */ public int getIdAuto() { return idAuto; } /** * @param idAuto the idAuto to set */ public void setIdAuto(int idAuto) { this.idAuto = idAuto; } /** * @return the fbid */ public String getFbid() { return fbid; } /** * @param fbid the fbid to set */ public void setFbid(String fbid) { this.fbid = fbid; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the avatar */ public byte[] getAvatar() { return avatar; } /** * @param avatar the avatar to set */ public void setAvatar(byte[] avatar) { this.avatar = avatar; } /** * @return the serialversionuid */ public static long getSerialversionuid() { return serialVersionUID; } }