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

com.genesys.workspace.models.targets.SearchResult Maven / Gradle / Ivy

There is a newer version: 9.0.73
Show newest version
package com.genesys.workspace.models.targets;

import java.util.Collection;

public class SearchResult  {
    private final long total;
    private final Collection targets;

    public SearchResult(long total, Collection targets) {
        this.total = total;
        this.targets = targets;
    }

    public long getTotal() {
        return total;
    }

    public Collection getTargets() {
        return targets;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy