INT-4505: Fix package tangle

JIRA: https://jira.spring.io/browse/INT-4505
This commit is contained in:
Gary Russell
2018-07-24 16:26:07 -04:00
committed by Artem Bilan
parent 865e2162e5
commit d6c8baf50f
3 changed files with 8 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.integration.file.remote.session;
package org.springframework.integration.file.remote.aop;
import java.util.ArrayList;
import java.util.Iterator;
@@ -26,6 +26,7 @@ import org.apache.commons.logging.LogFactory;
import org.springframework.integration.aop.AbstractMessageSourceAdvice;
import org.springframework.integration.core.MessageSource;
import org.springframework.integration.file.remote.AbstractRemoteFileStreamingMessageSource;
import org.springframework.integration.file.remote.session.DelegatingSessionFactory;
import org.springframework.integration.file.remote.synchronizer.AbstractInboundFileSynchronizingMessageSource;
import org.springframework.messaging.Message;
import org.springframework.util.Assert;

View File

@@ -0,0 +1,4 @@
/**
* Provides classes related to AOP.
*/
package org.springframework.integration.file.remote.aop;

View File

@@ -41,11 +41,11 @@ import org.springframework.integration.dsl.IntegrationFlow;
import org.springframework.integration.dsl.IntegrationFlows;
import org.springframework.integration.dsl.MessageChannels;
import org.springframework.integration.dsl.Pollers;
import org.springframework.integration.file.remote.aop.RotatingServerAdvice;
import org.springframework.integration.file.remote.aop.RotatingServerAdvice.KeyDirectory;
import org.springframework.integration.file.remote.session.CachingSessionFactory;
import org.springframework.integration.file.remote.session.DefaultSessionFactoryLocator;
import org.springframework.integration.file.remote.session.DelegatingSessionFactory;
import org.springframework.integration.file.remote.session.RotatingServerAdvice;
import org.springframework.integration.file.remote.session.RotatingServerAdvice.KeyDirectory;
import org.springframework.integration.file.remote.session.Session;
import org.springframework.integration.file.remote.session.SessionFactory;
import org.springframework.integration.file.remote.session.SessionFactoryLocator;