Ignore:
Timestamp:
02/07/14 16:26:50 (10 years ago)
Author:
twagoo
Message:

facetvalue -> facetselection

File:
1 moved

Legend:

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

    r4477 r4481  
    1818
    1919import java.io.Serializable;
     20import java.util.Collection;
    2021
    2122/**
     
    2324 * @author twagoo
    2425 */
    25 public class FacetValue implements Serializable {
     26public class FacetSelection implements Serializable {
    2627
    2728    private final Facet facet;
    2829
    29     private final String value;
     30    private final Collection<String> values;
    3031
    31     public FacetValue(Facet facet, String value) {
     32    public FacetSelection(Facet facet, Collection<String> values) {
    3233        this.facet = facet;
    33         this.value = value;
     34        this.values = values;
    3435    }
    3536
     
    3839    }
    3940
    40     public String getValue() {
    41         return value;
     41    public Collection getValue() {
     42        return values;
    4243    }
    4344
Note: See TracChangeset for help on using the changeset viewer.