· 6 years ago · Mar 13, 2020, 02:48 PM
1spring.application.name=hydrogen-integration
2################# Info #################
3info.app.name=Hydrogen Integration
4info.app.description=Hydrogen Integration
5info.app.version=1.2.0
6
7################# Licensing ################
8hydrogen.license.validate=true
9hydrogen.license.app_id=integration
10
11############### Encryption Keys ###################
12hydrogen.api.encryption.use=true
13hydrogen.api.encryption.key=H!e@D#g$E%a^B&l*
14hydrogen.encryptionkey=H!e@D#g$E%a^B&l*
15
16##logging.level.com.zaxxer.hikari=DEBUG
17
18server.port=8080
19server.context-path=/
20hydrogen.server-url=http://localhost:8080/
21server.servlet.session.cookie.secure=true
22
23spring.main.allow-bean-definition-overriding=true
24
25spring.mvc.view.prefix=/WEB-INF/jsp/
26spring.mvc.view.suffix=.jsp
27
28# the options from org.apache.camel.spring.boot.CamelConfigurationProperties can be configured here
29##camel.springboot.name=MyCamel
30camel.springboot.name=ServicesRest
31camel.component.servlet.mapping.contextPath=/integration/*
32
33# lets listen on all ports to ensure we can be invoked from the pod IP
34management.endpoints.web.base-path=/manage
35server.address=0.0.0.0
36management.address=0.0.0.0
37management.endpoints.enabled-by-default=true
38management.endpoint.health.show-details=always
39management.health.defaults.enabled=false
40endpoints.health.enabled = true
41endpoints.auditevents.enabled=false
42endpoints.autoconfig.enabled=false
43endpoints.beans.enabled=true
44endpoints.configprops.enabled=false
45endpoints.dump.enabled=false
46endpoints.env.enabled=false
47endpoints.flyway.enabled=false
48endpoints.loggers.enabled=false
49endpoints.liquibase.enabled=false
50endpoints.metrics.enabled=true
51endpoints.mappings.enabled=false
52endpoints.shutdown.enabled=false
53endpoints.trace.enabled=true
54management.endpoints.web.exposure.include=health, info, beans, metrics, trace
55
56###### Jackson JSON Mapper config
57spring.jackson.deserialization.fail-on-unknown-properties=false
58spring.jackson.deserialization.accept_empty_string_as_null_object=true
59spring.jackson.serialization.fail-on-empty-beans=false
60spring.jackson.mapper.accept-case-insensitive-properties=true
61spring.jackson.property-naming-strategy=SNAKE_CASE
62
63################# Data source #################
64db.name.hydrogen_api=hydrogen_api
65hydrogen.api-data-source.driverType=mysql
66hydrogen.api-data-source.host=localhost
67hydrogen.api-data-source.port=3306
68hydrogen.api-data-source.jdbc-url=jdbc:${hydrogen.api-data-source.driverType}://${hydrogen.api-data-source.host}:${hydrogen.api-data-source.port}/${db.name.hydrogen_api}?autoReconnect=true&useSSL=false&&zeroDateTimeBehavior=convertToNull&useUnicode=yes&characterEncoding=UTF-8
69hydrogen.api-data-source.username=dev_admin
70hydrogen.api-data-source.password=Hedgeable4124
71hydrogen.api-data-source.test-on-borrow=true
72hydrogen.api-data-source.validation-query=SELECT 1
73hydrogen.api-data-source.log-validation-errors=true
74
75################# Data source #################
76db.name.hydrogen_integration=hydrogen_integration
77hydrogen.integration-data-source.driverType=mysql
78hydrogen.integration-data-source.host=localhost
79hydrogen.integration-data-source.port=3306
80hydrogen.integration-data-source.jdbc-url=jdbc:${hydrogen.integration-data-source.driverType}://${hydrogen.integration-data-source.host}:${hydrogen.integration-data-source.port}/${db.name.hydrogen_integration}?autoReconnect=true&useSSL=false&&zeroDateTimeBehavior=convertToNull&useUnicode=yes&characterEncoding=UTF-8
81hydrogen.integration-data-source.username=dev_admin
82hydrogen.integration-data-source.password=Hedgeable4124
83hydrogen.integration-data-source.test-on-borrow=true
84hydrogen.integration-data-source.validation-query=SELECT 1
85hydrogen.integration-data-source.log-validation-errors=true
86
87################# Mongo Data Source ####################
88spring.data.mongodb.database=hydrogen_integration_logging
89#spring.data.mongodb.host=127.0.0.1
90#spring.data.mongodb.port=27017
91spring.data.mongodb.uri=mongodb://localhost:27017/
92
93
94### Hibernate ##
95hibernate.hbm2ddl.auto=none
96hydrogen.api.hibernate.hbm2ddl.auto=none
97hydrogen.integration.hibernate.hbm2ddl.auto=none
98hydrogen.api.hibernate.hbm2ddl.import_files=import.sql
99hydrogen.integration.hibernate.hbm2ddl.import_files=import.sql
100hibernate.hbm2ddl.import_files_sql_extractor=org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor
101hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
102hibernate.cache.use_second_level_cache=false
103hibernate.cache.use_query_cache=false
104hibernate.show_sql=true
105hibernate.format_sql=true
106hibernate.generate_statistics=true
107hibernate.ddl-auto=validate
108hibernate.physical_naming_strategy=com.hydrogen.integration.config.PhysicalNamingStrategyImpl
109hibernate.connection.CharSet=utf8
110hibernate.connection.characterEncoding=utf8
111
112
113################# Logging #################
114logging.level.org.springframework.web.filter.CommonsRequestLoggingFilter=INFO
115hydrogen.logging.include.querystring=true
116hydrogen.logging.maxpayloadlength=10000
117hydrogen.logging.include.headers=true
118hydrogen.logging.include.payload=true
119hydrogen.logging.include.clientInfo=true
120
121
122# The application configuration properties
123quickstart.generateOrderPeriod=10s
124quickstart.processOrderPeriod=30s
125
126######################Custom Exception ####################################
127hydrogen.exception.custom.not-licensed=Not licensed to use this API
128hydrogen.exception.custom.missing.category=Missing category or name field. Both must be updated as a pair.
129hydrogen.exception.custom.illegal.arguments=Illegal Argument(s)
130hydrogen.error.message.application.error=There was an error processing your request. Please contact us or try again later.
131hydrogen.exception.custom.unauthorized=You are not authorized to perform this action.
132hydrogen.exception.custom.auth=Could not validate credentials. Please check your username and key and try again!
133hydrogen.exception.custom.account.restricted=The account has been restricted. Please contact us for more information.
134hydrogen.exception.custom.account.expired=The account has expired. Please contact us for more information.
135hydrogen.exception.custom.apicallsexceeded=Number of API calls exceeded the limit.
136hydrogen.exception.custom.generallimit=There was an error processing the request.
137hydrogen.exception.custom.field.missing=The following required field is empty:
138hydrogen.exception.custom.field.incorrect=The following required field is incorrect:
139hydrogen.exception.custom.field.limit=The following field is not within the appropriate limit:
140hydrogen.exception.custom.field.specialchars=The following field contains characters that are not permitted:
141hydrogen.exception.custom.field.invalidinput=The following field contains input that does not match our valid choices:
142hydrogen.exception.custom.field.wrongformat=The following field is in the wrong format:
143hydrogen.exception.custom.invaliddate=The following field contains an invalid date:
144hydrogen.exception.custom.field.validationfailed=The field validation process has failed for:
145hydrogen.exception.custom.fail.to.create=Failed to create:
146hydrogen.exception.custom.fail.to.push=Failed to push:
147hydrogen.exception.custom.fail.to.update=Failed to update:
148hydrogen.exception.custom.fail.to.delete=Failed to delete:
149hydrogen.exception.custom.field.multiplemissing=The following required fields have not been created:
150hydrogen.exception.custom.nodata=No data exists for this:
151hydrogen.exception.custom.field.duplicates=There are duplicates records for these fields:
152hydrogen.exception.custom.fail.to.verify=Fail to verify :
153hydrogen.exception.custom.extrainput=The following field should not have any input:
154hydrogen.exception.custom.field.noinfo=The following field needs information in it:
155hydrogen.exception.custom.field.defaultnotcreated=Default fields have not been created for:
156hydrogen.exception.custom.exists=A record of the following is already in the db:
157hydrogen.exception.custom.apikey=Failed to validate token:
158hydrogen.exception.custom.fail.to.match=Output does not match expected result:
159hydrogen.exception.custom.unexpectedoutput=Unexpected output has appeared:
160hydrogen.exception.custom.wrongexception=Wrong exception has been thrown:
161hydrogen.exception.custom.fail.to.exception=Expected error not thrown:
162hydrogen.exception.custom.invalidinput=Invalid input:
163hydrogen.exception.custom.nothing.to.update=No fields to be updated:
164hydrogen.exception.custom.noone.to.email=No one to email:
165hydrogen.exception.custom.nothing.to.create=No fields to be created:
166hydrogen.exception.custom.fail.to.find=Failed to find:
167hydrogen.exception.custom.duplicates=There are duplicate records:
168hydrogen.exception.custom.fail.to.get=Failed to get data:
169hydrogen.exception.custom.fail.to.parse=Failed to parse data:
170hydrogen.exception.custom.fail.to.upload=Failed to upload data:
171hydrogen.exception.custom.exceededlimit=Exceeded limit:
172hydrogen.exception.custom.notactive=Item is not active:
173hydrogen.exception.custom.fail.to.sync=Failed to sync:
174hydrogen.exception.custom.fail.to.subscribe=Failed to subscribe:
175hydrogen.exception.custom.fail.to.unsubscribe=Failed to unsubscribe:
176hydrogen.exception.custom.invalidgroup=Invalid group of items:
177hydrogen.exception.custom.fail.to.send=Failed to send:
178hydrogen.exception.custom.fail.to.cancel=Failed to cancel:
179hydrogen.exception.custom.permission=Not authorized to complete this action:
180hydrogen.exception.custom.fail.to.add=Failed to add:
181hydrogen.exception.custom.invalid.tenant=Bad tenant ID in request
182hydrogen.exception.custom.resource.not.found=Resource not found!
183hydrogen.exception.custom.clientHydroExist=a client-hydro record already exists for this client.
184hydrogen.exception.custom.fail.to.login=Client ID or Client Secret is incorrect
185hydrogen.exception.custom.invalid.proxyId=The proxy security entered is not a valid security_id.
186hydrogen.exception.custom.vendorNotSupported=Vendor is not supported for requested integration.
187
188aggregation.mapping.not.found=The aggregation account from which you're attempting to retrieve this information was not created through Hydrogen's Integration Service. You will need to create this account as an aggregation account using Hydrogen's Integration Service.
189bankLink.mapping.not.found=The bank link from which you're attempting to retrieve this information was not created through Hydrogen's Integration Service. You will need to create this account as an bank link using Hydrogen's Integration Service.
190######## application level settings #############################
191hydrogen.api_tenant_token_error=Could not validate the API token.
192hydrogen.client_token_error=Could not validate the user token.
193hydrogen.application_error=There was an error processing your request. Please contact us or try again later.
194hydrogen.response_field=response
195hydrogen.error_field=error
196hydrogen.error_message_field=message
197####################Base Entity Default #################
198hydrogen.integration.manager.BaseEntity.recordStatus=ACTIVE
199
200################ JSON ####################
201hydrogen.json.error.conversion=There was an error converting the object to JSON
202hydrogen.json.error.parsing=There was an error parsing the JSON to the specified JAVA objecthydrogen.regex.okchar=^[-a-zA-Z0-9\\. ]*$
203
204########## REGEX templates ###############
205hydrogen.regex.std=^[a-zA-Z0-9]*$
206hydrogen.regex.alphanumspaceunderscore=^[\\w ]+$
207hydrogen.regex.email=^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$
208hydrogen.regex.phone.us=^\\(?([0-9]{3})\\)?[-.\\s]?([0-9]{3})[-.\\s]?([0-9]{4})$
209hydrogen.regex.phone.international=^\\+(?:[0-9] ?){6,14}[0-9]$
210hydrogen.regex.phone.extension=\\d{3}-\\d{3}-\\d{4}\\s(x|(ext))\\d{3,5}
211hydrogen.regex.iso8601=^([\\+-]?\\d{4}(?!\\d{2}\\b))((-?)((0[1-9]|1[0-2])(\\3([12]\\d|0[1-9]|3[01]))?|W([0-4]\\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\\d|[12]\\d{2}|3([0-5]\\d|6[1-6])))([T\\s]((([01]\\d|2[0-3])((:?)[0-5]\\d)?|24\\:?00)([\\.,]\\d+(?!:))?)?(\\17[0-5]\\d([\\.,]\\d+)?)?([zZ]|([\\+-])([01]\\d|2[0-3]):?([0-5]\\d)?)?)?)?$
212hydrogen.regex.nospecialchar=[^a-zA-Z0-9]+
213hydrogen.regex.noextraspecialchar=[~`!@#$%^&*()_-+=[{]}|:',./?]
214hydrogen.regex.zipcode=^[0-9]{5}(?:-[0-9]{4})?$
215#hydrogen.regex.zipcode=^\\d{5}(?:[-\\s]\\d{4})?$
216hydrogen.regex.ssn=\\b(?!000)(?!666)(?!9)[0-9]{3}[ -]?(?!00)[0-9]{2}[ -]?(?!0000)[0-9]{4}\\b
217hydrogen.regex.allowedpercent=^(100(?:\\.00)?|0(?:\\.\\d\\d)?|\\d?\\d(?:\\.\\d\\d)?)$
218hydrogen.regex.url=http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?
219hydrogen.regex.urlstrip=!\"#$%&\'()*+,-./@:;<=>[\\]^_`{|}~
220hydrogen.regex.base64=^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$
221hydrogen.regex.dateymd=/(0[1-9]|1[012])[- \\/.](0[1-9]|[12][0-9]|3[01])[- \\/.](19|20)\\d\\d/
222hydrogen.regex.mysqldatetime=^([0-9]{2,4})-([0-1][0-9])-([0-3][0-9])(?:( [0-2][0-9]):([0-5][0-9]):([0-5][0-9]))?$
223hydrogen.regex.basicdate=^\\d{4}\\-(0?[1-9]|1[012])\\-(0?[1-9]|[12][0-9]|3[01])$
224hydrogen.regex.ip=^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$
225hydrogen.regex.int=^-?[0-9]+$
226
227################ ACCESS LEVEL ROLES #####################
228hydrogen.access.level.superadmin=ROLE_SUPER_ADMIN
229hydrogen.access.level.admin=ROLE_ADMIN
230hydrogen.access.level.client=ROLE_CLIENT
231hydrogen.access.level.hydrogenadmin=ROLE_HYDROGEN_ADMIN
232hydrogen.access.level.advisor=ROLE_ADVISOR
233hydrogen.access.level.portfolioManger=ROLE_PORTFOLIO_MANAGER
234hydrogen.access.level.marketingManger=ROLE_MARKETING_MANAGER
235hydrogen.access.level.supportAgent=ROLE_SUPPORT
236hydrogen.access.level.operationsAgent=ROLE_OPERATIONS
237
238
239################ FORMATS ################################
240hydrogen.date.format=yyyy-MM-dd'T'HH:mm:ss.SSSZ
241
242
243hydrogen.roles=admin,individual,firm,advisor
244hydrogen.superadminroles=admin
245hydrogen.superadmin.tenantid=1
246
247
248##############Encryption Field String Length and error message ############
249hydrogen.encrypted.character.length=255
250characterLimit.reached=255 character limit reached. Please shorten the string.
251hydrogen.category.type=credit_card,savings,mortgage,loan,brokerage,other
252hydrogen.frequency.unit.type=one_time,daily,weekly,monthly,quarterly,annually
253hydrogen.frequency.policy.unit.type=days,weeks,months,years
254
255### Hazelcast ##
256spring.hazelcast.config=classpath:hazelcast.xml
257cache.config.enable=true
258cache.config.networkPort=5701
259cache.config.networkPortCount=100
260cache.config.members=tcpIp;localhost
261cache.config.tcpIp.interface=192.168.0.*
262cache.config.management.url=http://localhost:8055/mancenter
263cache.config.management.enable=false
264cache.config.kubernetes.serviceDnsTimeout=10
265cache.config.group.name=dev
266cache.config.group.password=dev-pass
267hazelcast.diagnostics.enabled=true
268hazelcast.diagnostics.invocation.sample.period.seconds=30
269hazelcast.diagnostics.metric.level=info
270hazelcast.diagnostics.pending.invocations.period.seconds=30
271hazelcast.diagnostics.slowoperations.period.seconds=30
272
273###### ACL ###########
274hydrogen.acl.permissions=read,write,delete
275hydrogen.acl.non.audited.roles=support,portfolio_manager
276hydrogen.acl.on=true
277
278###### RabbitMQ ######
279spring.rabbitmq.username=guest
280spring.rabbitmq.password=guest
281spring.rabbitmq.virtualHost=/
282spring.rabbitmq.host=localhost
283spring.rabbitmq.port=5672
284
285spring.rabbitmq.listener.simple.retry.max-attempts=3
286spring.rabbitmq.listener.simple.concurrency=4
287spring.rabbitmq.listener.simple.max-concurrency=8
288spring.rabbitmq.listener.simple.retry.initial-interval=5000
289
290# Message Queue specific configs for app1
291app1.exchange.name=app1-exchange
292app1.queue.name=app1-queue
293app1.routing.key=app1-routing-key
294# Message Queue specific configs for app2
295app2.exchange.name=app2-exchange
296app2.queue.name=app2-queue
297app2.routing.key=app2-routing-key
298
299########Jwt Authentication URL##########
300jwt.uri=https://dev.hydrogenplatform.com/authorization/v1/oauth/token?grant_type=client_credentials
301jwt-check.uri=https://dev.hydrogenplatform.com/authorization/v1/oauth/check_token?token=
302spring.security.oauth2.client.provider.my-oauth-provider.authorization-uri=https://dev.hydrogenplatform.com/authorization/v1/oauth/authorize
303spring.security.oauth2.client.provider.my-oauth-provider.token-uri=https://dev.hydrogenplatform.com/authorization/v1/oauth/token
304spring.security.oauth2.client.provider.my-oauth-provider.user-info-authentication-method=header
305spring.security.oauth2.client.provider.my-oauth-provider.user-name-attribute=name
306
307## Spring DevTools config ##
308spring.devtools.restart.enabled=false
309
310## Header response ##
311hydrogen.security.xFrameOptions.allowFrom=/.hydrogenplatform.com/g
312hydrogen.security.https.allowsubdomains=true
313hydrogen.security.https.maxageseconds=31536000
314hydrogen.security.jwt.key.public=-----BEGIN PUBLIC KEY-----\
315MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAygmuKR3NpuaoG20jj7xk\
3168SaATORyyBZ/o133XkbKgo08j/QetnFms3BMobyTK9Xc/S5YC/gXf1D07b1Bu0Iy\
317i60yaAJlokwO4YBLqZl+aN5GtOqu3r/CyAJOsM/IrXCPpQuhzbwDd1OVuePgsu4z\
318Wmbqhu3uAUNZpXDDnJmc+t2pGvP6NGrM8ngtQ8gCAg1qSaTq5yasjrOVBtFNgfXG\
319Ks16vCGhbujE4/1/lCDBuRLlUdPq3rkRjY8CrrQjiljkdCUiSfjWpld79C2iR1Ly\
320uLnIxyZC67ST1E3TdWarz97ZYgmva1ihBr/YZFW2beVOoVnFeEQYExppClTxXCtJ\
321wwIDAQAB\
322-----END PUBLIC KEY-----
323
324hydrogen.api.baseURI=https://dev.hydrogenplatform.com/nucleus/v1/
325hydrogen.api.account.path=/account
326hydrogen.api.portfolio.path=/portfolio
327
328# Client Metadata Keys
329hydrogen.client.metadata.politicallyExposedPerson=politically_exposed_person
330hydrogen.client.metadata.politicallyExposedPersonName=politically_exposed_person_name
331hydrogen.client.metadata.politicallyExposedPersonAssociation=politically_exposed_person_association
332hydrogen.client.metadata.politicallyExposedPersonPosition=politically_exposed_person_position
333hydrogen.client.metadata.incomeSource=income_source
334hydrogen.client.metadata.expectedActivity=expected_activity
335hydrogen.client.metadata.regO=reg_o
336hydrogen.client.metadata.backupWithholdingPercent=backup_with_holding_percent
337hydrogen.client.metadata.identificationType=identification_type
338hydrogen.client.metadata.documentIdNumber=document_id_number
339hydrogen.client.metadata.identificationNumber=identification_number
340hydrogen.client.metadata.issueCountryCode=issuing_country_code
341hydrogen.client.metadata.docFrontImage=document_front_image
342hydrogen.client.metadata.docBackImage=document_back_image
343hydrogen.client.metadata.docTypeName=type
344hydrogen.client.metadata.monthOfExpiry=month_of_expiry
345hydrogen.client.metadata.dayOfExpiry=day_of_expiry
346hydrogen.client.metadata.yearOfExpiry=year_of_expiry
347hydrogen.client.metadata.driverLicenseState=DriverLicenceState
348hydrogen.client.metadata.state=state
349hydrogen.client.metadata.mrz1=Mrz1
350hydrogen.client.metadata.mrz2=Mrz2
351
352# Document Metadata Keys
353hydrogen.document.metadata.issuingAuthority=issuing_authority
354
355plaid.api.baseURI.production=https://production.plaid.com
356plaid.api.baseURI.other=https://sandbox.plaid.com
357zillow.api.GetSearchResults=https://www.zillow.com/webservice/GetSearchResults.htm?zws-id=<ZWS_ID>&address=<ADDRESS>&citystatezip=<CITY_STATE_POSTALCODE>
358zillow.api.GetZestimate=http://www.zillow.com/webservice/GetZestimate.htm?zws-id=<ZWS_ID>&zpid=<ZP_ID>
359
360#Yodlee stuff
361yodlee.api.baseURI=https://development.api.yodlee.com/ysl
362yodlee.api.baseURI.production=https://production.api.yodlee.com/ysl
363
364#saltedge stuff
365saltedge.api.url=https://www.saltedge.com/api/v5/
366saltedge.return.to.url=http://google.com
367saltedge.scopes= transactions_details,account_details
368
369
370#Widget url's
371plaid.api.widget.url=http://google.com
372yodlee.api.widget.url = https://development.node.yodlee.com/authenticate/development-400/?channelAppName=tieredpreprod
373tink.api.baseURI = https://api.tink.com/api/v1
374
375### Xignite settings ##
376xignite.api.historical.prod.url=https://globalhistorical.xignite.com/v3/xGlobalHistorical.json
377xignite.api.historical.test.url=https://globalhistorical.xignite.com/v3/xGlobalHistorical.json
378xignite.api.historical.getGlobalHistoricalQuotesRange.path=/GetGlobalHistoricalQuotesRange
379xignite.api.historical.listExchanges.path=/ListExchanges
380
381xignite.api.quotes.prod.url=https://globalquotes.xignite.com/v3/xGlobalQuotes.json
382xignite.api.quotes.test.url=https://globalquotes.xignite.com/v3/xGlobalQuotes.json
383xignite.api.quotes.getGlobalDelayedQuotes.path=/GetGlobalDelayedQuotes
384
385### Barchart settings ##
386barchart.api.prod.url=http://ondemand.websol.barchart.com/
387barchart.api.test.url=http://ondemand.websol.barchart.com/
388
389### Intrinio settings ##
390intrinio.api.prod.url=https://api-v2.intrinio.com
391intrinio.api.test.url=https://api-v2.intrinio.com
392
393### Drivewealth settings ##
394drivewealth.api.prod.url=https://bo-api.drivewealth.io/back-office
395drivewealth.api.test.url=https://bo-api.drivewealth.io/back-office
396drivewealth.api.quotes.path=/quotes
397drivewealth.api.auth.path=/auth
398
399### BBVA settings ##
400bbva.oauth.prod.url=https://paas.bbvacompass.com
401bbva.oauth.test.url=https://sbx-paas.bbvacompass.com
402bbva.oauth.token.path=/auth/token
403bbva.oauth.logout.path=/auth/management/logout
404
405bbva.api.prod.url=https://apis.bbvaopenplatform.com
406bbva.api.test.url=https://sandbox-apis.bbvaopenplatform.com
407bbva.api.consumer.path=/consumer/v3.0
408bbva.api.accounts.path=/accounts/v3.0
409bbva.api.defaultConsumerIp=0.0.0.0
410
411### Cross River settings ##
412crossriver.auth.prod.url=https://crbcos-sandbox.auth0.com/oauth/token
413crossriver.auth.test.url=https://crbcos-sandbox.auth0.com/oauth/token
414crossriver.api.prod.url=https://sandbox.crbcos.com/Core/v1
415crossriver.api.test.url=https://sandbox.crbcos.com/Core/v1
416crossriver.api.customers.path=/cm/customers
417crossriver.api.addresses.path=/addresses
418crossriver.api.emails.path=/emails
419crossriver.api.identifications.path=/identifications
420crossriver.api.phones.path=/phones
421crossriver.api.name.path=/name
422crossriver.api.profile.path=/profile
423crossriver.api.pageNumber.param=filter.pageNumber
424
425crossriver.api.accounts.path=/dda/accounts
426crossriver.api.wallet.accounts.path=/wallet/accounts
427crossriver.api.subaccounts.path=/dda/subaccounts
428crossriver.api.wallet.subaccounts.path=/wallet/subaccounts
429
430### Common HTTP Client settings ##
431hydrogen.http.client.maxTotalConnections=100
432hydrogen.http.client.maxPerRouteConnections=15
433hydrogen.http.client.requestTimeout=30000
434hydrogen.http.client.connectTimeout=30000
435hydrogen.http.client.maxIdleTime=30000
436
437mx.api.page.currentPage = 1
438mx.api.page.recordsPerPage = 1000
439mx.api.ins.code=chase
440
441## Tink Properties
442tink.api.dev.url=https://api.tink.com/api/v1/
443tink.api.widget.url=https://link.tink.com/1.0/authorize/?client_id=da1ac1ef36ae42fc9f37da5533f6da6e&redirect_uri=http%3A%2F%2Flocalhost%3A1080%2Fuser%2Ftoken&scope=accounts:read,investments:read,transactions:read,user:read,credentials:read,identity:read,statistics:read&market=GB&locale=en_US&test=true
444
445##############################RabbitMq Configuration###################################
446rabbitmq.queueNameAggregation=integration-aggregation-queue
447rabbitmq.exchangeNameAggregation=integration-aggregation-exchange
448rabbitmq.routingKeyAggregation=integration-aggregation-routing
449rabbitmq.deadLetterQueueName=integration-dead-letter-queue
450rabbitmq.deadLetterExchangeName=integration-dead-letter-exchange
451rabbitmq.deadLetterRoutingKey=integration-dead-letter-routing
452hydrogen.integration.URI=https://dev.hydrogenplatform.com/integration/v1/
453hydrogen.admin.username=hydrogen
454hydrogen.admin.password=IntegrationTest