Skip to content
Snippets Groups Projects
Commit 8a7567b7 authored by Danielle Jackson's avatar Danielle Jackson
Browse files

fixed errors in indexer-azure

parent d2918a01
No related branches found
No related tags found
1 merge request!6Trusted ibm
......@@ -14,7 +14,7 @@
package org.opengroup.osdu.indexer.azure.di;
import org.opengroup.osdu.core.common.model.core.DpsLog;
import org.opengroup.osdu.core.common.model.core.IDpsLog;
import org.opengroup.osdu.core.common.service.core.Log;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.stereotype.Component;
......@@ -22,14 +22,14 @@ import org.springframework.web.context.annotation.RequestScope;
@Component
@RequestScope
public class DpsLogFactory implements FactoryBean<DpsLog> {
public class DpsLogFactory implements FactoryBean<IDpsLog> {
@Override
public DpsLog getObject() throws Exception {
public IDpsLog getObject() throws Exception {
return new Log();
}
@Override
public Class<?> getObjectType() {
return DpsLog.class;
return IDpsLog.class;
}
}
......@@ -19,7 +19,7 @@ import org.apache.http.HttpStatus;
import org.opengroup.osdu.core.common.model.core.TenantInfo;
import org.opengroup.osdu.indexer.azure.model.ElasticSettingSchema;
import org.opengroup.osdu.core.common.model.core.ClusterSettings;
import org.opengroup.osdu.core.common.spi.coreis.ElasticRepository;
import org.opengroup.osdu.core.common.spi.coreis.IElasticRepository;
import org.opengroup.osdu.core.common.model.AppException;
import org.opengroup.osdu.core.common.service.coreis.Preconditions;
import org.springframework.beans.factory.annotation.Value;
......@@ -27,7 +27,7 @@ import org.springframework.stereotype.Component;
import javax.inject.Inject;
@Component
public class ElasticRepositoryCosmosDB implements ElasticRepository {
public class ElasticRepositoryCosmosDB implements IElasticRepository {
@Inject
private CosmosDBElasticSettings cosmosDB;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment