Ignore:
Timestamp:
03/07/14 13:00:36 (10 years ago)
Author:
Twan Goosen
Message:

added details panel for resources on the record page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.0/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/pojo/ResourceInfo.java

    r4639 r4644  
    2424
    2525    private final String href;
     26    private final String fileName;
    2627    private final String mimeType;
    2728    private final ResourceType resourceType;
    2829
    29     public ResourceInfo(String href, String mimeType, ResourceType resourceType) {
     30    public ResourceInfo(String href, String fileName, String mimeType, ResourceType resourceType) {
    3031        this.href = href;
     32        this.fileName = fileName;
    3133        this.mimeType = mimeType;
    3234        this.resourceType = resourceType;
     
    3537    public String getHref() {
    3638        return href;
     39    }
     40
     41    public String getFileName() {
     42        return fileName;
    3743    }
    3844
Note: See TracChangeset for help on using the changeset viewer.