package com.cappielloantonio.play.util; import com.cappielloantonio.play.model.Queue; import com.cappielloantonio.play.model.Song; import java.util.ArrayList; import java.util.List; public class QueueUtil { public static Queue getQueueElementFromSong(Song song) { return new Queue(song.getId()); } public static List getQueueElementsFromSongs(List songs) { List queue = new ArrayList<>(); for(Song song: songs) { queue.add(new Queue(song.getId())); } return queue; } }