Skip to content
GitLab
Menu
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
Lib
cloud
azure
OS Core Lib Azure
Commits
88bfe517
Commit
88bfe517
authored
May 07, 2021
by
neelesh thakur
Browse files
address comments
parent
dafe849f
Pipeline
#38956
passed with stages
in 6 minutes and 23 seconds
Changes
4
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/opengroup/osdu/azure/cryptography/CryptographyClientFactoryImpl.java
View file @
88bfe517
...
...
@@ -16,7 +16,7 @@ import com.azure.security.keyvault.keys.cryptography.CryptographyClientBuilder;
* Implementation for CryptographyClientFactory.
*/
@Component
@ConditionalOnProperty
(
value
=
"
servic
e.cryptography.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
@ConditionalOnProperty
(
value
=
"
azur
e.cryptography.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
public
class
CryptographyClientFactoryImpl
implements
CryptographyClientFactory
{
@Autowired
...
...
src/main/java/org/opengroup/osdu/azure/eventgrid/EventGridTopicClientFactoryImpl.java
View file @
88bfe517
...
...
@@ -32,7 +32,7 @@ import org.springframework.stereotype.Component;
* Implementation for IEventGridTopicClientFactory.
*/
@Component
@ConditionalOnProperty
(
value
=
"
servic
e.eventgrid.topic.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
@ConditionalOnProperty
(
value
=
"
azur
e.eventgrid.topic.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
public
class
EventGridTopicClientFactoryImpl
implements
IEventGridTopicClientFactory
{
private
static
final
Logger
LOGGER
=
LoggerFactory
.
getLogger
(
EventGridTopicClientFactoryImpl
.
class
.
getName
());
...
...
src/main/java/org/opengroup/osdu/azure/eventgrid/EventGridTopicStore.java
View file @
88bfe517
...
...
@@ -58,7 +58,7 @@ import java.util.List;
* </pre>
*/
@Component
@ConditionalOnProperty
(
value
=
"
servic
e.eventgrid.topic.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
@ConditionalOnProperty
(
value
=
"
azur
e.eventgrid.topic.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
public
class
EventGridTopicStore
{
private
static
final
Logger
LOGGER
=
LoggerFactory
.
getLogger
(
CosmosStoreBulkOperations
.
class
.
getName
());
...
...
src/main/java/org/opengroup/osdu/azure/eventgridmanager/EventGridManagerFactoryImpl.java
View file @
88bfe517
...
...
@@ -17,7 +17,7 @@ import com.microsoft.rest.LogLevel;
* Interface for Event Grid Manager Factory to return appropriate EventGridManager based on the data partition id.
*/
@Component
@ConditionalOnProperty
(
value
=
"
servic
e.eventgrid.manager.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
@ConditionalOnProperty
(
value
=
"
azur
e.eventgrid.manager.enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
public
class
EventGridManagerFactoryImpl
implements
EventGridManagerFactory
{
@Autowired
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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