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

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

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

import javax.ws.rs.core.Response;
import java.util.List;
import java.util.UUID;

import com.wavefront.api.EventAPI;
import com.wavefront.dto.Event;

/**
 * A no-op SourceTagAPI stub.
 *
 * @author [email protected]
 */
public class NoopEventAPI implements EventAPI {
  @Override
  public Response proxyEvents(UUID uuid, List list) {
    return Response.ok().build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy