diff --git a/src/main/java/com/eactive/eai/agent/command/ReloadInflowClientControlCommand.java b/src/main/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommand.java similarity index 92% rename from src/main/java/com/eactive/eai/agent/command/ReloadInflowClientControlCommand.java rename to src/main/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommand.java index 8333557..9fd4e40 100644 --- a/src/main/java/com/eactive/eai/agent/command/ReloadInflowClientControlCommand.java +++ b/src/main/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommand.java @@ -1,5 +1,7 @@ -package com.eactive.eai.agent.command; +package com.eactive.eai.agent.inflow; +import com.eactive.eai.agent.command.Command; +import com.eactive.eai.agent.command.CommandException; import com.eactive.eai.common.inflow.AbstractInflowControlManager; import com.eactive.eai.common.inflow.InflowControlUtil; import com.eactive.eai.common.util.Logger; diff --git a/src/main/java/com/eactive/eai/agent/command/RemoveInflowClientControlCommand.java b/src/main/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommand.java similarity index 91% rename from src/main/java/com/eactive/eai/agent/command/RemoveInflowClientControlCommand.java rename to src/main/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommand.java index 3750073..d9e1700 100644 --- a/src/main/java/com/eactive/eai/agent/command/RemoveInflowClientControlCommand.java +++ b/src/main/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommand.java @@ -1,5 +1,7 @@ -package com.eactive.eai.agent.command; +package com.eactive.eai.agent.inflow; +import com.eactive.eai.agent.command.Command; +import com.eactive.eai.agent.command.CommandException; import com.eactive.eai.common.inflow.AbstractInflowControlManager; import com.eactive.eai.common.inflow.InflowControlUtil; import com.eactive.eai.common.util.Logger; diff --git a/src/test/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommandTest.java b/src/test/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommandTest.java index 0e2021f..d0ab556 100644 --- a/src/test/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommandTest.java +++ b/src/test/java/com/eactive/eai/agent/inflow/ReloadInflowClientControlCommandTest.java @@ -13,7 +13,7 @@ import org.junit.jupiter.api.Test; import org.springframework.test.util.ReflectionTestUtils; import com.eactive.eai.agent.command.CommandException; -import com.eactive.eai.agent.command.ReloadInflowClientControlCommand; +import com.eactive.eai.agent.inflow.ReloadInflowClientControlCommand; import com.eactive.eai.common.inflow.InflowControlManager; import com.eactive.eai.common.inflow.InflowControlUtil; import com.eactive.eai.custom.inflow.ClientDualInflowControlManager; diff --git a/src/test/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommandTest.java b/src/test/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommandTest.java index 940d8da..4ec9cc0 100644 --- a/src/test/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommandTest.java +++ b/src/test/java/com/eactive/eai/agent/inflow/RemoveInflowClientControlCommandTest.java @@ -13,7 +13,7 @@ import org.junit.jupiter.api.Test; import org.springframework.test.util.ReflectionTestUtils; import com.eactive.eai.agent.command.CommandException; -import com.eactive.eai.agent.command.RemoveInflowClientControlCommand; +import com.eactive.eai.agent.inflow.RemoveInflowClientControlCommand; import com.eactive.eai.common.inflow.InflowControlManager; import com.eactive.eai.common.inflow.InflowControlUtil; import com.eactive.eai.custom.inflow.ClientDualInflowControlManager;