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

org.infinispan.client.rest.RestLoggingClient Maven / Gradle / Ivy

There is a newer version: 14.0.33.Final
Show newest version
package org.infinispan.client.rest;

import java.util.concurrent.CompletionStage;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 11.0
 **/
public interface RestLoggingClient {
   CompletionStage listLoggers();

   CompletionStage listAppenders();

   CompletionStage setLogger(String name, String level, String... appenders);

   CompletionStage removeLogger(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy