diff --git a/spring-integration-file/src/main/java/org/springframework/integration/file/filters/FileSystemMarkerFilePresentFileListFilter.java b/spring-integration-file/src/main/java/org/springframework/integration/file/filters/FileSystemMarkerFilePresentFileListFilter.java index 1ddfba46a8..42b0ba7410 100644 --- a/spring-integration-file/src/main/java/org/springframework/integration/file/filters/FileSystemMarkerFilePresentFileListFilter.java +++ b/spring-integration-file/src/main/java/org/springframework/integration/file/filters/FileSystemMarkerFilePresentFileListFilter.java @@ -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 { - FileSystemMarkerFilePresentFileListFilter(FileListFilter filter) { + public FileSystemMarkerFilePresentFileListFilter(FileListFilter filter) { super(filter); } - FileSystemMarkerFilePresentFileListFilter(FileListFilter filter, String suffix) { + public FileSystemMarkerFilePresentFileListFilter(FileListFilter filter, String suffix) { super(filter, suffix); } - FileSystemMarkerFilePresentFileListFilter(FileListFilter filter, + public FileSystemMarkerFilePresentFileListFilter(FileListFilter filter, Function function) { super(filter, function); } - FileSystemMarkerFilePresentFileListFilter( + public FileSystemMarkerFilePresentFileListFilter( Map, Function> filtersAndFunctions) { super(filtersAndFunctions); } diff --git a/spring-integration-ftp/src/main/java/org/springframework/integration/ftp/filters/FtpSystemMarkerFilePresentFileListFilter.java b/spring-integration-ftp/src/main/java/org/springframework/integration/ftp/filters/FtpSystemMarkerFilePresentFileListFilter.java index ad7aa295d5..30bb42532c 100644 --- a/spring-integration-ftp/src/main/java/org/springframework/integration/ftp/filters/FtpSystemMarkerFilePresentFileListFilter.java +++ b/spring-integration-ftp/src/main/java/org/springframework/integration/ftp/filters/FtpSystemMarkerFilePresentFileListFilter.java @@ -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 { - FtpSystemMarkerFilePresentFileListFilter(FileListFilter filter) { + public FtpSystemMarkerFilePresentFileListFilter(FileListFilter filter) { super(filter); } - FtpSystemMarkerFilePresentFileListFilter(FileListFilter filter, String suffix) { + public FtpSystemMarkerFilePresentFileListFilter(FileListFilter filter, String suffix) { super(filter, suffix); } - FtpSystemMarkerFilePresentFileListFilter(FileListFilter filter, + public FtpSystemMarkerFilePresentFileListFilter(FileListFilter filter, Function function) { super(filter, function); } - FtpSystemMarkerFilePresentFileListFilter( + public FtpSystemMarkerFilePresentFileListFilter( Map, Function> filtersAndFunctions) { super(filtersAndFunctions); } diff --git a/spring-integration-sftp/src/main/java/org/springframework/integration/sftp/filters/SftpSystemMarkerFilePresentFileListFilter.java b/spring-integration-sftp/src/main/java/org/springframework/integration/sftp/filters/SftpSystemMarkerFilePresentFileListFilter.java index ee5b70249c..792fecf622 100644 --- a/spring-integration-sftp/src/main/java/org/springframework/integration/sftp/filters/SftpSystemMarkerFilePresentFileListFilter.java +++ b/spring-integration-sftp/src/main/java/org/springframework/integration/sftp/filters/SftpSystemMarkerFilePresentFileListFilter.java @@ -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 { - SftpSystemMarkerFilePresentFileListFilter(FileListFilter filter) { + public SftpSystemMarkerFilePresentFileListFilter(FileListFilter filter) { super(filter); } - SftpSystemMarkerFilePresentFileListFilter(FileListFilter filter, String suffix) { + public SftpSystemMarkerFilePresentFileListFilter(FileListFilter filter, String suffix) { super(filter, suffix); } - SftpSystemMarkerFilePresentFileListFilter(FileListFilter filter, + public SftpSystemMarkerFilePresentFileListFilter(FileListFilter filter, Function function) { super(filter, function); } - SftpSystemMarkerFilePresentFileListFilter( + public SftpSystemMarkerFilePresentFileListFilter( Map, Function> filtersAndFunctions) { super(filtersAndFunctions); }