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

com.epam.reportportal.elastic.EmptyElasticSearchClient Maven / Gradle / Ivy

There is a newer version: 5.13.0
Show newest version
package com.epam.reportportal.elastic;

import com.epam.reportportal.log.LogMessage;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * Empty client to work with Elasticsearch.
 * @author Maksim Antonov
 */
@Service
public class EmptyElasticSearchClient implements ElasticSearchClient  {

    @Override
    public void save(List logMessageList) {
    }

    @Override
    public void deleteLogsByLaunchIdAndProjectId(Long launchId, Long projectId) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy