Album.java
Go to the documentation of this file.
00001 
00009 package org.rosmultimedia.player.media.model;
00010 
00011 import java.util.List;
00012 
00018 public class Album extends Audio {
00019     private List<String> theme;
00020     private String description;
00021     private String type;
00022     private List<String> style;
00023     private int albumid;
00024     private int playcount;
00025     private String albumlabel;
00026     private List<String> mood;
00027 
00029     public static Album fromJson(String json) {
00030         return fromJson(json, Album.class);
00031     }
00032 
00033     public List<String> getTheme() {
00034         return theme;
00035     }
00036     public void setTheme(List<String> theme) {
00037         this.theme = theme;
00038     }
00039     public String getDescription() {
00040         return description;
00041     }
00042     public void setDescription(String description) {
00043         this.description = description;
00044     }
00045     public String getType() {
00046         return type;
00047     }
00048     public void setType(String type) {
00049         this.type = type;
00050     }
00051     public List<String> getStyle() {
00052         return style;
00053     }
00054     public void setStyle(List<String> style) {
00055         this.style = style;
00056     }
00057     public int getAlbumid() {
00058         return albumid;
00059     }
00060     public void setAlbumid(int albumid) {
00061         this.albumid = albumid;
00062     }
00063     public int getPlaycount() {
00064         return playcount;
00065     }
00066     public void setPlaycount(int playcount) {
00067         this.playcount = playcount;
00068     }
00069     public String getAlbumlabel() {
00070         return albumlabel;
00071     }
00072     public void setAlbumlabel(String albumlabel) {
00073         this.albumlabel = albumlabel;
00074     }
00075     public List<String> getMood() {
00076         return mood;
00077     }
00078     public void setMood(List<String> mood) {
00079         this.mood = mood;
00080     }
00081 }


smarthome_media_model
Author(s):
autogenerated on Sat Jun 8 2019 20:54:19