Examples of LoggerSubsystemsResponse


Examples of org.graylog2.restclient.models.api.responses.system.loggers.LoggerSubsystemsResponse

    }

    public Map<String, InternalLoggerSubsystem> allLoggerSubsystems() {
        Map<String, InternalLoggerSubsystem> subsystems = Maps.newHashMap();
        try {
            LoggerSubsystemsResponse response = api.path(routes.LoggersResource().subsytems(), LoggerSubsystemsResponse.class)
                    .node(this)
                    .execute();

            for (Map.Entry<String, LoggerSubsystemSummary> ss : response.subsystems.entrySet()) {
                subsystems.put(ss.getKey(), new InternalLoggerSubsystem(
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.