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

com.wavefront.agent.api.NoopLogAPI Maven / Gradle / Ivy

There is a newer version: 4.36
Show newest version
package com.wavefront.agent.api;

import com.wavefront.api.LogAPI;
import com.wavefront.dto.Log;
import java.util.List;
import javax.ws.rs.core.Response;

/**
 * A no-op LogAPI stub.
 *
 * @author [email protected]
 */
public class NoopLogAPI implements LogAPI {
  @Override
  public Response proxyLogs(String agentProxyId, List logs) {
    return Response.ok().build();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy