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

org.visallo.web.clientapi.model.ClientApiElementFindRelatedResponse Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.visallo.web.clientapi.model;

import org.visallo.web.clientapi.util.ClientApiConverter;

import java.util.ArrayList;
import java.util.List;

public class ClientApiElementFindRelatedResponse implements ClientApiObject {
    private long count;
    private List elements = new ArrayList();

    public long getCount() {
        return count;
    }

    public void setCount(long count) {
        this.count = count;
    }

    public List getElements() {
        return elements;
    }

    @Override
    public String toString() {
        return ClientApiConverter.clientApiToString(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy