Ignore:
Timestamp:
02/27/14 16:42:37 (10 years ago)
Author:
twagoo
Message:

added collectionFacet property to VloConfig? (class+xml)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.0/vlo-commons/src/main/java/eu/clarin/cmdi/vlo/config/VloConfig.java

    r4565 r4584  
    4444    private int solrTimeOut = 0;
    4545
    46     @XmlElementWrapper(name="dataRoots")
    47     @XmlElement(name="DataRoot")
     46    @XmlElementWrapper(name = "dataRoots")
     47    @XmlElement(name = "DataRoot")
    4848    private List<DataRoot> dataRoot;
    4949
     
    106106    @XmlElementWrapper(name = "facetFields")
    107107    private List<String> facetField = new ArrayList<String>();
     108
     109    private String collectionFacet;
    108110
    109111    // test related parameters
     
    707709
    708710    /**
     711     *
     712     * @return the name of the facet that represents the collection a resource
     713     * belongs to
     714     */
     715    public String getCollectionFacet() {
     716        return collectionFacet;
     717    }
     718
     719    /**
     720     *
     721     * @param collectionFacet the name of the facet that represents the
     722     * collection a resource belongs to
     723     */
     724    public void setCollectionFacet(String collectionFacet) {
     725        this.collectionFacet = collectionFacet;
     726    }
     727
     728    /**
    709729     * Get the value of the languageFields parameter<br><br>
    710730     *
Note: See TracChangeset for help on using the changeset viewer.