forked from airsonic-advanced/airsonic-advanced
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from kagemomiji/issue250-update-view-technology
#250 update view technology
- Loading branch information
Showing
1,238 changed files
with
8,478 additions
and
7,772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,3 +155,5 @@ local.properties | |
|
||
# Code Recommenders | ||
.recommenders/ | ||
|
||
tmp-home/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
airsonic-main/src/main/java/org/airsonic/player/command/ChangeCoverArtCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
This file is part of Airsonic. | ||
Airsonic is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Airsonic is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Airsonic. If not, see <http://www.gnu.org/licenses/>. | ||
Copyright 2024 (C) Y.Tory | ||
Copyright 2016 (C) Airsonic Authors | ||
Based upon Subsonic, Copyright 2009 (C) Sindre Mehus | ||
*/ | ||
package org.airsonic.player.command; | ||
|
||
import javax.validation.constraints.NotNull; | ||
|
||
/** | ||
* Command used in ChangeCoverArtController. | ||
*/ | ||
public class ChangeCoverArtCommand { | ||
|
||
@NotNull | ||
private Integer id; | ||
private String artist; | ||
private String album; | ||
|
||
public ChangeCoverArtCommand() { | ||
} | ||
|
||
public ChangeCoverArtCommand(Integer id, String artist, String album) { | ||
this.id = id; | ||
this.artist = artist; | ||
this.album = album; | ||
} | ||
|
||
public Integer getId() { | ||
return id; | ||
} | ||
|
||
public String getArtist() { | ||
return artist; | ||
} | ||
|
||
public String getAlbum() { | ||
return album; | ||
} | ||
|
||
public void setId(int id) { | ||
this.id = id; | ||
} | ||
|
||
public void setArtist(String artist) { | ||
this.artist = artist; | ||
} | ||
|
||
public void setAlbum(String album) { | ||
this.album = album; | ||
} | ||
|
||
} |
Oops, something went wrong.