All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.visenze.visearch.GroupSearchResult Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch;

import java.util.List;

/**
 * Created by Hung on 28/6/17.
 *
 * Added grouped results for group_by parameter e.g. group by mpid
 *
 */
public class GroupSearchResult {

    private List result;
    private String groupByValue;

    public GroupSearchResult() {}

    public GroupSearchResult(String groupValue, List result) {
        this.result = result;
        this.groupByValue = groupValue;
    }

    public List getResult() {
        return result;
    }

    public void setResult(List result) {
        this.result = result;
    }

    public String getGroupByValue() {
        return groupByValue;
    }

    public void setGroupByValue(String groupByValue) {
        this.groupByValue = groupByValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy