Examples of SavedSearchImpl


Examples of org.graylog2.savedsearches.SavedSearchImpl

        searchData.put("title", cr.title);
        searchData.put("query", cr.query);
        searchData.put("creator_user_id", getCurrentUser().getName());
        searchData.put("created_at", Tools.iso8601());

        SavedSearch search = new SavedSearchImpl(searchData);
        String id;
        try {
            id = savedSearchService.save(search);
        } catch (ValidationException e) {
            LOG.error("Validation error.", e);
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.