1 package yukihane.inqubus.manager;
3 import saccubus.worker.profile.ConvertProfile;
4 import saccubus.worker.profile.DownloadProfile;
10 public class RequestProcess implements Request {
12 private static int serialId;
13 private final int rowId;
14 private final DownloadProfile downloadProfile;
15 private final String videoId;
16 private final ConvertProfile convertProfile;
18 public RequestProcess(DownloadProfile download, String videoId, ConvertProfile convert) {
19 this.rowId = ++serialId;
20 this.downloadProfile = download;
21 this.videoId = videoId;
22 this.convertProfile = convert;
25 public ConvertProfile getConvertProfile() {
26 return convertProfile;
29 public DownloadProfile getDownloadProfile() {
30 return downloadProfile;
33 public String getVideoId() {
38 public int getRowId() {