| 3 | import org.eclipse.microprofile.config.inject.ConfigProperty; |
| 4 | |
| 5 | public abstract class TapirRepository implements IRepository { |
| 6 | |
| 7 | @ConfigProperty(name = "registry.search.table.names.modules") |
| 8 | String moduleTableName; |
| 9 | @ConfigProperty(name = "registry.search.table.names.provider") |
| 10 | String providerTableName; |
| 11 | @ConfigProperty(name = "registry.search.table.names.reports") |
| 12 | String reportsTableName; |
| 13 | @ConfigProperty(name = "registry.search.table.names.deployKeys") |
| 14 | String deployKeyTableName; |
| 15 | |
| 16 | public String getModuleTableName() { |
| 17 | return moduleTableName; |
| 18 | } |
| 19 | |
| 20 | public String getProviderTableName() { |
| 21 | return providerTableName; |
| 22 | } |
| 23 | |
| 24 | public String getReportsTableName() { |
| 25 | return reportsTableName; |
| 26 | } |
| 27 | |
| 28 | public String getDeployKeyTableName() { |
| 29 | return deployKeyTableName; |
| 30 | } |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected