-
Notifications
You must be signed in to change notification settings - Fork 2
/
application.yml
77 lines (77 loc) · 2.51 KB
/
application.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
server:
port: 8454
logging:
file: /java/C2S_LOGS/context-handler/context-handler.log
info:
component: Context Handler API
hystrix.command.default.execution.timeout.enabled: false
ribbon:
ReadTimeout: 50000
spring:
datasource:
# configure url, username and password per environment
url: jdbc:mysql://localhost:3306/pcm?autoReconnect=true
username: root
password: admin
c2s:
context-handler:
policy-provider: PcmServicePolicyProviderImpl
pid:
type: ISO
polrep:
policySet:
combiningAlgs:
first-applicable: urn:oasis:names:tc:xacml:1.0:policy-combining-algorithm:first-applicable
ordered-deny-overrides: urn:oasis:names:tc:xacml:1.1:policy-combining-algorithm:ordered-deny-overrides
ordered-permit-overrides: urn:oasis:names:tc:xacml:1.1:policy-combining-algorithm:ordered-permit-overrides
deny-overrides: urn:oasis:names:tc:xacml:1.0:policy-combining-algorithm:deny-overrides
only-one-applicable: urn:oasis:names:tc:xacml:1.0:policy-combining-algorithm:only-one-applicable
permit-overrides: urn:oasis:names:tc:xacml:1.0:policy-combining-algorithm:permit-overrides
pdpRequest:
resource:
typeCode: 34133-9
status: urn:oasis:names:tc:ebxml-regrep:StatusType:Approved
action:
actionId: pepaccess
audit-client:
enabled: false
host: localhost
port: 9630
fhir:
enabled: false
# configure fhir server base url
serverUrl: http://bhitsdevhie01/hapi-fhir-jpaserver/baseStu3
clientSocketTimeoutInMs: 768000
ssn:
system: http://hl7.org/fhir/sid/us-ssn
oid: urn:oid:2.16.840.1.113883.4.1
label: SSN
npi:
system: http://hl7.org/fhir/sid/us-npi
oid: urn:oid:2.16.840.1.113883.4.6
label: PRN
pou:
system: http://hl7.org/fhir/v3/ActReason
oid: urn:oid:2.16.840.1.113883.1.11.20448
label: PurposeOfUse
mrn:
system: https://bhits.github.io/consent2share/
oid: urn:oid:1.3.6.1.4.1.21367.13.20.200
label: MRN
---
# enables ssl and adds /contextHandler context path when activated
spring.profiles: standalone-ssl
spring:
profiles:
include: ssl-default
server.context-path: /contextHandler
---
# updates configuration for docker environment
spring:
profiles: docker
datasource:
url: jdbc:mysql://${C2S_DB_HOST:pcm-db.c2s.com}:${C2S_DB_PORT:3306}/pcm?autoReconnect=true
c2s:
context-handler:
audit-client:
host: logback-audit-server.c2s.com