Skip to content

Commit 9b427ec

Browse files
author
Martijn Dirkse
committed
Use frankframework paths to refer to credential factories (partial fix)
1 parent a76bf9e commit 9b427ec

31 files changed

+13
-13
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.

docs/source/downloads/ladybug.zip

0 Bytes
Binary file not shown.

docs/source/downloads/sandbox/v01.zip

0 Bytes
Binary file not shown.

docs/source/snippets/Frank2Authentication/v500/addClientContainerAndRemoveServerPorts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ services:
2222
instance.name: frank-authorization-client
2323
dtap.stage: LOC
2424
configurations.directory.autoLoad: true
25-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
25+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2626
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties
2727
```

docs/source/snippets/Frank2Authentication/v500/addClientContainerAndRemoveServerPorts.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
instance.name: frank-authorization-client
2525
dtap.stage: LOC
2626
configurations.directory.autoLoad: true
27-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
27+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2828
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

docs/source/snippets/Frank2Authentication/v515/changePortsForGithubActions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ services:
2424
instance.name: frank-authorization-client
2525
dtap.stage: LOC
2626
configurations.directory.autoLoad: true
27-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
27+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2828
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties
2929
```

docs/source/snippets/Frank2Authentication/v515/changePortsForGithubActions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
instance.name: frank-authorization-client
2727
dtap.stage: LOC
2828
configurations.directory.autoLoad: true
29-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
29+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
3030
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

docs/source/snippets/Frank2Authentication/v520/serverBackToLoc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ services:
2222
instance.name: frank-authorization-client
2323
dtap.stage: LOC
2424
configurations.directory.autoLoad: true
25-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
25+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2626
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties
2727
```

docs/source/snippets/Frank2Authentication/v520/serverBackToLoc.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
instance.name: frank-authorization-client
2525
dtap.stage: LOC
2626
configurations.directory.autoLoad: true
27-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
27+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2828
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

docs/source/snippets/Frank2Authentication/v530/useFileSystemCredentialFactory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ services:
2323
dtap.stage: LOC
2424
configurations.directory.autoLoad: true
2525
credentialFactory.class: org.frankframework.credentialprovider.FileSystemCredentialFactory
26-
credentialFactory.filesystem.root: /opt/frank/secrets/
26+
# credentialFactory.filesystem.root: /opt/frank/secrets/
2727
```

docs/source/snippets/Frank2Authentication/v530/useFileSystemCredentialFactory.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
dtap.stage: LOC
2626
configurations.directory.autoLoad: true
2727
credentialFactory.class: org.frankframework.credentialprovider.FileSystemCredentialFactory
28-
credentialFactory.filesystem.root: /opt/frank/secrets/
28+
# credentialFactory.filesystem.root: /opt/frank/secrets/

srcSteps/Frank2Authentication/v500/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ services:
2121
instance.name: frank-authorization-client
2222
dtap.stage: LOC
2323
configurations.directory.autoLoad: true
24-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
24+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2525
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

srcSteps/Frank2Authentication/v510/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ services:
2323
instance.name: frank-authorization-client
2424
dtap.stage: LOC
2525
configurations.directory.autoLoad: true
26-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
26+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2727
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

srcSteps/Frank2Authentication/v515/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ services:
2323
instance.name: frank-authorization-client
2424
dtap.stage: LOC
2525
configurations.directory.autoLoad: true
26-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
26+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2727
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

srcSteps/Frank2Authentication/v520/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ services:
2121
instance.name: frank-authorization-client
2222
dtap.stage: LOC
2323
configurations.directory.autoLoad: true
24-
credentialFactory.class: nl.nn.credentialprovider.PropertyFileCredentialFactory
24+
credentialFactory.class: org.frankframework.credentialprovider.PropertyFileCredentialFactory
2525
credentialFactory.map.properties: /opt/frank/secrets/credentials.properties

srcSteps/Frank2Authentication/v530/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ services:
2222
dtap.stage: LOC
2323
configurations.directory.autoLoad: true
2424
credentialFactory.class: org.frankframework.credentialprovider.FileSystemCredentialFactory
25-
credentialFactory.filesystem.root: /opt/frank/secrets/
25+
# credentialFactory.filesystem.root: /opt/frank/secrets/

0 commit comments

Comments
 (0)