Examples of AddStaticFieldRequest


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

        return staticFields;
    }

    public void addStaticField(String key, String value) throws APIException, IOException {
        api.path(routes.StaticFieldsResource().create(id)).clusterEntity(node)
                .body(new AddStaticFieldRequest(key, value))
                .expect(Http.Status.CREATED)
                .execute();
    }
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.