forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Source MongoDB Internal POC: Check Operation (airbytehq#28946)
* Implement check operation * Formatting
- Loading branch information
1 parent
c32cc25
commit 407e834
Showing
4 changed files
with
73 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...nal-poc/src/main/java/io/airbyte/integrations/source/mongodb/internal/MongoConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.integrations.source.mongodb.internal; | ||
|
||
public class MongoConstants { | ||
|
||
public static final String AUTH_SOURCE_CONFIGURATION_KEY = "auth_source"; | ||
public static final String CONNECTION_STRING_CONFIGURATION_KEY = "connection_string"; | ||
public static final String DATABASE_CONFIGURATION_KEY = "database"; | ||
public static final String PASSWORD_CONFIGURATION_KEY = "password"; | ||
public static final String REPLICA_SET_CONFIGURATION_KEY = "replica_set"; | ||
public static final String USER_CONFIGURATION_KEY = "user"; | ||
|
||
private MongoConstants() {} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters