Skip to content

Commit a5881d8

Browse files
mjd507spring-builds
authored andcommitted
GH-10898: Fix schema link for ftp/sftp/smb in respective docs
Fixes: #10898 Signed-off-by: Jiandong Ma <[email protected]> (cherry picked from commit 2ceb85c)
1 parent 6c0a0fa commit a5881d8

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/reference/antora/modules/ROOT/pages/ftp/inbound.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Files are downloaded with this suffix (the default is `.writing`), and the file
9292

9393
The `remote-file-separator` attribute lets you configure a file separator character to use if the default '/' is not applicable for your particular environment.
9494

95-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema] for more details on these attributes.
95+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-ftp/src/main/resources/org/springframework/integration/ftp/config[schema] for more details on these attributes.
9696

9797
You should also understand that the FTP inbound channel adapter is a polling consumer.
9898
Therefore, you must configure a poller (by using either a global default or a local subelement).

src/reference/antora/modules/ROOT/pages/ftp/outbound-gateway.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ The `put` command sends a file to the remote server.
196196
The payload of the message can be a `java.io.File`, a `byte[]`, or a `String`.
197197
A `remote-filename-generator` (or expression) is used to name the remote file.
198198
Other available attributes include `remote-directory`, `temporary-remote-directory`, and their `*-expression` equivalents: `use-temporary-file-name` and `auto-create-directory`.
199-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema] documentation for more information.
199+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-ftp/src/main/resources/org/springframework/integration/ftp/config[schema] documentation for more information.
200200

201201
The message payload resulting from a `put` operation is a `String` that represents the full path of the file on the server after transfer.
202202

src/reference/antora/modules/ROOT/pages/ftp/outbound.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The following example shows how to configure an `outbound-channel-adapter`:
3232
The preceding configuration shows how you can configure an FTP outbound channel adapter by using the `outbound-channel-adapter` element while also providing values for various attributes, such as `filename-generator` (an implementation of the `o.s.i.file.FileNameGenerator` strategy interface), a reference to a `session-factory`, and other attributes.
3333
You can also see some examples of `*expression` attributes that let you use SpEL to configure settings such as `remote-directory-expression`, `temporary-remote-directory-expression`, and `remote-filename-generator-expression` (a SpEL alternative to `filename-generator`, shown in the preceding example).
3434
As with any component that allows the usage of SpEL, access to the payload and the message Headers is available through the 'payload' and 'headers' variables.
35-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema] for more details on the available attributes.
35+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-ftp/src/main/resources/org/springframework/integration/ftp/config[schema] for more details on the available attributes.
3636

3737
NOTE: By default, if no file name generator is specified, Spring Integration uses `o.s.i.file.DefaultFileNameGenerator`.
3838
`DefaultFileNameGenerator` determines the file name based on the value of the `file_name` header (if it exists) in the `MessageHeaders`, or, if the payload of the Message is already a `java.io.File`, it uses the original name of that file.

src/reference/antora/modules/ROOT/pages/sftp/inbound.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ IMPORTANT: Further, if you use a distributed `MetadataStore` (such as xref:redis
8989
The actual local filter is a `ChainFileListFilter` that contains a pattern filter that prevents processing files that are in the process of being downloaded (based on the `temporary-file-suffix`) and the supplied filter.
9090
Files are downloaded with this suffix (the default is `.writing`), and the files are renamed to their final names when the transfer is complete, making them 'visible' to the filter.
9191

92-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema] for more detail on these attributes.
92+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-sftp/src/main/resources/org/springframework/integration/sftp/config[schema] for more detail on these attributes.
9393

9494
SFTP inbound channel adapter is a polling consumer.
9595
Therefore, you must configure a poller (either a global default or a local element).

src/reference/antora/modules/ROOT/pages/sftp/outbound-gateway.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ See also xref:sftp/outbound-gateway.adoc#sftp-partial[Outbound Gateway Partial S
186186
The payload of the message can be a `java.io.File`, a `byte[]`, or a `String`.
187187
A `remote-filename-generator` (or expression) is used to name the remote file.
188188
Other available attributes include `remote-directory`, `temporary-remote-directory` and their `*-expression` equivalents: `use-temporary-file-name` and `auto-create-directory`.
189-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema documentation] for more information.
189+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-sftp/src/main/resources/org/springframework/integration/sftp/config[schema documentation] for more information.
190190

191191
The message payload resulting from a `put` operation is a `String` that contains the full path of the file on the server after transfer.
192192

src/reference/antora/modules/ROOT/pages/sftp/outbound.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The following example shows how to configure an SFTP outbound channel adapter:
2828
mode="REPLACE"/>
2929
----
3030

31-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema] for more detail on these attributes.
31+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-sftp/src/main/resources/org/springframework/integration/sftp/config[schema] for more detail on these attributes.
3232

3333
[[spel-and-the-sftp-outbound-adapter]]
3434
== SpEL and the SFTP Outbound Adapter

src/reference/antora/modules/ROOT/pages/smb.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ See also xref:smb.adoc#smb-partial[Outbound Gateway Partial Success (`mget` and
576576
The payload of the message can be a `java.io.File`, a `byte[]`, or a `String`.
577577
A `remote-filename-generator` (or expression) is used to name the remote file.
578578
Other available attributes include `remote-directory`, `temporary-remote-directory` and their `*-expression` equivalents: `use-temporary-file-name` and `auto-create-directory`.
579-
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-core/src/main/resources/org/springframework/integration/config[schema documentation] for more information.
579+
See the https://github.com/spring-projects/spring-integration/tree/main/spring-integration-smb/src/main/resources/org/springframework/integration/smb/config[schema documentation] for more information.
580580

581581
The message payload resulting from a `put` operation is a `String` that contains the full path of the file on the server after transfer.
582582

0 commit comments

Comments
 (0)