Package change

- Move RepositoryStateMachinePersist from support to
  persist as we're starting to have more persist related
  classes.
- Relates to #184
This commit is contained in:
Janne Valkealahti
2016-03-06 16:57:48 +00:00
parent a981ed4361
commit 5cd7d348e9
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.statemachine.support;
package org.springframework.statemachine.persist;
import org.springframework.statemachine.StateMachineContext;
import org.springframework.statemachine.StateMachineContextRepository;

View File

@@ -35,8 +35,8 @@ import org.springframework.statemachine.StateMachinePersist;
import org.springframework.statemachine.action.Action;
import org.springframework.statemachine.config.StateMachineBuilder;
import org.springframework.statemachine.config.StateMachineBuilder.Builder;
import org.springframework.statemachine.persist.RepositoryStateMachinePersist;
import org.springframework.statemachine.redis.RedisStateMachineContextRepository;
import org.springframework.statemachine.support.RepositoryStateMachinePersist;
@Configuration
public class StateMachineConfig {