com.epam.reportportal.elastic.EmptyElasticSearchClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-jobs Show documentation
Show all versions of service-jobs Show documentation
EPAM Report portal. Service jobs
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