Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
System
Indexer
Commits
1ef35b5e
Commit
1ef35b5e
authored
Dec 30, 2020
by
Sviatoslav Nekhaienko
Browse files
remove Azure specific impl now it is in core
parent
e520d293
Pipeline
#20374
failed with stage
in 45 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/di/IndexSchemaServiceOverrideImpl.java
deleted
100644 → 0
View file @
e520d293
package
org.opengroup.osdu.indexer.azure.di
;
import
org.opengroup.osdu.indexer.service.IndexSchemaServiceImpl
;
import
org.opengroup.osdu.indexer.service.SchemaService
;
import
org.springframework.context.annotation.Primary
;
import
org.springframework.stereotype.Service
;
import
javax.inject.Inject
;
import
java.io.UnsupportedEncodingException
;
import
java.net.URISyntaxException
;
@Primary
@Service
public
class
IndexSchemaServiceOverrideImpl
extends
IndexSchemaServiceImpl
{
private
final
SchemaService
schemaService
;
@Inject
public
IndexSchemaServiceOverrideImpl
(
SchemaService
schemaService
)
{
this
.
schemaService
=
schemaService
;
}
protected
String
getSchema
(
String
kind
)
throws
URISyntaxException
,
UnsupportedEncodingException
{
return
this
.
schemaService
.
getSchema
(
kind
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment