GH-2705: public CTORs on AMFPFileListFilter Impls
Fixes https://github.com/spring-projects/spring-integration/issues/2705
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2017 the original author or authors.
|
||||
* Copyright 2017-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -29,20 +29,20 @@ import java.util.function.Function;
|
||||
*/
|
||||
public class FileSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<File> {
|
||||
|
||||
FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter) {
|
||||
public FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter) {
|
||||
super(filter);
|
||||
}
|
||||
|
||||
FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter, String suffix) {
|
||||
public FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter, String suffix) {
|
||||
super(filter, suffix);
|
||||
}
|
||||
|
||||
FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter,
|
||||
public FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter,
|
||||
Function<String, String> function) {
|
||||
super(filter, function);
|
||||
}
|
||||
|
||||
FileSystemMarkerFilePresentFileListFilter(
|
||||
public FileSystemMarkerFilePresentFileListFilter(
|
||||
Map<FileListFilter<File>, Function<String, String>> filtersAndFunctions) {
|
||||
super(filtersAndFunctions);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2017 the original author or authors.
|
||||
* Copyright 2017-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -33,20 +33,20 @@ import org.springframework.integration.file.filters.FileListFilter;
|
||||
*/
|
||||
public class FtpSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<FTPFile> {
|
||||
|
||||
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter) {
|
||||
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter) {
|
||||
super(filter);
|
||||
}
|
||||
|
||||
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter, String suffix) {
|
||||
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter, String suffix) {
|
||||
super(filter, suffix);
|
||||
}
|
||||
|
||||
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter,
|
||||
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter,
|
||||
Function<String, String> function) {
|
||||
super(filter, function);
|
||||
}
|
||||
|
||||
FtpSystemMarkerFilePresentFileListFilter(
|
||||
public FtpSystemMarkerFilePresentFileListFilter(
|
||||
Map<FileListFilter<FTPFile>, Function<String, String>> filtersAndFunctions) {
|
||||
super(filtersAndFunctions);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2017 the original author or authors.
|
||||
* Copyright 2017-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -33,20 +33,20 @@ import com.jcraft.jsch.ChannelSftp.LsEntry;
|
||||
*/
|
||||
public class SftpSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<LsEntry> {
|
||||
|
||||
SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter) {
|
||||
public SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter) {
|
||||
super(filter);
|
||||
}
|
||||
|
||||
SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter, String suffix) {
|
||||
public SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter, String suffix) {
|
||||
super(filter, suffix);
|
||||
}
|
||||
|
||||
SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter,
|
||||
public SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter,
|
||||
Function<String, String> function) {
|
||||
super(filter, function);
|
||||
}
|
||||
|
||||
SftpSystemMarkerFilePresentFileListFilter(
|
||||
public SftpSystemMarkerFilePresentFileListFilter(
|
||||
Map<FileListFilter<LsEntry>, Function<String, String>> filtersAndFunctions) {
|
||||
super(filtersAndFunctions);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user