Skip to content

Commit

Permalink
Changed the visibility of fields on OPDSEntry [comixed#354]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Jun 15, 2020
1 parent 0b2e0a5 commit c3f2db9
Showing 1 changed file with 7 additions and 7 deletions.
Expand Up @@ -40,21 +40,21 @@
*/
@Log4j2
public class OPDSEntry {
public String title;
public String id;

@JacksonXmlElementWrapper(useWrapping = false)
@JacksonXmlProperty(localName = "author")
public List<OPDSAuthor> authors;
private List<OPDSAuthor> authors;

@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss'Z'")
public Date updated;
private Date updated;

public OPDSContent content;
private OPDSContent content;

@JacksonXmlElementWrapper(useWrapping = false)
@JacksonXmlProperty(localName = "link")
public List<OPDSLink> links;
private List<OPDSLink> links;

private String title;
private String id;

public OPDSEntry(Comic comic) {
this.id = comic.getId().toString();
Expand Down

0 comments on commit c3f2db9

Please sign in to comment.