/* * Copyright 2015 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. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.statemachine.transition; import org.springframework.statemachine.action.Action; import org.springframework.statemachine.guard.Guard; import org.springframework.statemachine.security.SecurityRule; import org.springframework.statemachine.state.State; import org.springframework.statemachine.trigger.Trigger; import java.util.Collection; public class AbstractLocalTransition<S, E> extends AbstractTransition<S, E> implements Transition<S, E> { /** * Instantiates a new abstract local transition. * * @param source the source * @param target the target * @param actions the actions * @param event the event * @param guard the guard * @param trigger the trigger */ public AbstractLocalTransition(State<S, E> source, State<S, E> target, Collection<Action<S, E>> actions, E event, Guard<S, E> guard, Trigger<S, E> trigger) { super(source, target, actions, event, TransitionKind.LOCAL, guard, trigger); } /** * Instantiates a new abstract local transition. * * @param source the source * @param target the target * @param actions the actions * @param event the event * @param guard the guard * @param trigger the trigger * @param securityRule the security rule */ public AbstractLocalTransition(State<S, E> source, State<S, E> target, Collection<Action<S, E>> actions, E event, Guard<S, E> guard, Trigger<S, E> trigger, SecurityRule securityRule) { super(source, target, actions, event, TransitionKind.LOCAL, guard, trigger, securityRule); } }