package com.ved.musicmapapp.Objects; import java.io.Serializable; public class Genre implements Serializable{ private int id; private int artistId; private String genreName; private int userID; public int getUserID() { return userID; } public void setUserID(int userID) { this.userID = userID; } public int getId() { return id; } public void setId(int id) { this.id = id; } public int getArtistId() { return artistId; } public void setArtistId(int artistId) { this.artistId = artistId; } public String getGenreName() { return genreName; } public void setGenreName(String genreName) { this.genreName = genreName; } public Genre(int artistId, String genreName,int userID) { super(); this.artistId = artistId; this.genreName = genreName; this.userID = userID; } public Genre() { super(); } }