Skip to content

Commit 84a9bae

Browse files
committed
Aligned interfaces to current TheTVDB REST API definitions (some return values had been changed in the meanwhile). Refactoring of JSON deserializer class.
1 parent bc5afba commit 84a9bae

27 files changed

+519
-630
lines changed

src/main/java/com/github/m0nk3y2k4/thetvdb/api/TheTVDBApi.java

Lines changed: 37 additions & 37 deletions
Large diffs are not rendered by default.

src/main/java/com/github/m0nk3y2k4/thetvdb/api/model/EpisodeAbstract.java

Lines changed: 0 additions & 88 deletions
This file was deleted.

src/main/java/com/github/m0nk3y2k4/thetvdb/api/model/Actor.java renamed to src/main/java/com/github/m0nk3y2k4/thetvdb/api/model/data/Actor.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
1-
package com.github.m0nk3y2k4.thetvdb.api.model;
1+
package com.github.m0nk3y2k4.thetvdb.api.model.data;
22

33
public interface Actor {
44

55
/**
66
* Get the id
7-
7+
*
88
* @return the id
99
*/
1010
Long getId();
1111

1212
/**
1313
* Get the image
14-
14+
*
1515
* @return the image
1616
*/
1717
String getImage();
1818

1919
/**
2020
* Get the imageAdded
21-
21+
*
2222
* @return the imageAdded
2323
*/
2424
String getImageAdded();
2525

2626
/**
2727
* Get the imageAuthor
28-
28+
*
2929
* @return the imageAuthor
3030
*/
3131
Long getImageAuthor();
3232

3333
/**
3434
* Get the lastUpdated
35-
35+
*
3636
* @return the lastUpdated
3737
*/
3838
String getLastUpdated();
3939

4040
/**
4141
* Get the name
42-
42+
*
4343
* @return the name
4444
*/
4545
String getName();
4646

4747
/**
4848
* Get the role
49-
49+
*
5050
* @return the role
5151
*/
5252
String getRole();
5353

5454
/**
5555
* Get the seriesId
56-
56+
*
5757
* @return the seriesId
5858
*/
5959
Long getSeriesId();
6060

6161
/**
6262
* Get the sortOrder
63-
63+
*
6464
* @return the sortOrder
6565
*/
6666
Long getSortOrder();

0 commit comments

Comments
 (0)