Examples of ExtractorOrderRequest


Examples of org.graylog2.restclient.models.api.requests.ExtractorOrderRequest

        return extractors;
    }

    public void order(String inputId, SortedMap<Integer, String> order) throws APIException, IOException {
        ExtractorOrderRequest req = new ExtractorOrderRequest();
        req.order = order;

        api.path(resource.order(inputId))
                .body(req)
                .onlyMasterNode()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.