Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
memoriav
Memobase 2020
services
Import Process
Text File Validation
Commits
6979dbed
Commit
6979dbed
authored
Apr 07, 2020
by
Jonas Waeber
Browse files
Remove sftp server extension
No longer needed.
parent
30397aa9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/kotlin/SftpServerExtension.kt
deleted
100644 → 0
View file @
30397aa9
/*
* sftp-reader
* Copyright (C) 2020 Memoriav
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
org.memobase
import
org.junit.jupiter.api.extension.BeforeAllCallback
import
org.junit.jupiter.api.extension.ExtensionContext
class
SftpServerExtension
:
BeforeAllCallback
{
override
fun
beforeAll
(
context
:
ExtensionContext
?)
{
TODO
(
"Not yet implemented"
)
}
class
SftpServerWrapper
(
private
val
embedded
:
KafkaEmbedded
)
:
ExtensionContext
.
Store
.
CloseableResource
{
override
fun
close
()
{
embedded
.
close
()
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment