-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
291 additions
and
196 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
sftp-connector-demo/src/com/axonivy/connector/sftp/demo/Constants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.axonivy.connector.sftp.demo; | ||
|
||
public class Constants { | ||
public static final String DUMMY = "dummy"; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...or-demo/src_hd/com/axonivy/connector/sftp/demo/SftpClientDemo/SftpClientDemoData.ivyClass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
Variables: | ||
|
||
com.axonivy.connector.sftp.server: | ||
# The host name to the SFTP server | ||
host: 'localhost' | ||
|
||
# The port number to the SFTP server | ||
port: 22 | ||
|
||
# The username to the SFTP server | ||
username: 'usr' | ||
|
||
# Auth type to the SFPT server: password OR ssh | ||
auth: 'ssh' | ||
|
||
# The password to the SFTP server | ||
# [password] | ||
password: '' | ||
|
||
# The ssh key string to SFTP server | ||
# [secret private key] | ||
secret.sshkey: '' | ||
# The ssh key passphrase | ||
secret.sshpassphrase: '' | ||
dummy: | ||
# The host name to the SFTP server | ||
host: 'localhost' | ||
|
||
# The port number to the SFTP server | ||
port: 22 | ||
|
||
# The username to the SFTP server | ||
username: 'usr' | ||
|
||
# Auth type to the SFPT server: password OR ssh | ||
auth: 'password' | ||
|
||
# The password to the SFTP server | ||
# [password] | ||
password: pwd | ||
|
||
# The ssh key string to SFTP server | ||
# [secret private key] | ||
secret.sshkey: '' | ||
|
||
# The ssh key passphrase | ||
secret.sshpassphrase: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
sftp-connector/dataclasses/com/axonivy/connector/sftp/SftpHelperData.ivyClass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
SftpHelperData #class | ||
com.axonivy.connector.sftp #namespace | ||
sftpName String #field | ||
sftpClient com.axonivy.connector.sftp.service.SftpClientService #field |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.