Class LifeCycleTransitionImpl
- java.lang.Object
-
- org.nuxeo.ecm.core.lifecycle.impl.LifeCycleTransitionImpl
-
- All Implemented Interfaces:
LifeCycleTransition
public class LifeCycleTransitionImpl extends Object implements LifeCycleTransition
Life cycle transition implementation.- Author:
- Julien Anguenot
- See Also:
LifeCycleTransition
-
-
Constructor Summary
Constructors Constructor Description LifeCycleTransitionImpl(String name, String description, String destinationState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Returns the description of the transition.String
getDestinationStateName()
Returns the destination state.String
getName()
Returns the transition name.
-
-
-
Method Detail
-
getDestinationStateName
public String getDestinationStateName()
Description copied from interface:LifeCycleTransition
Returns the destination state.- Specified by:
getDestinationStateName
in interfaceLifeCycleTransition
- Returns:
- the destination state name as a string
-
getDescription
public String getDescription()
Description copied from interface:LifeCycleTransition
Returns the description of the transition.- Specified by:
getDescription
in interfaceLifeCycleTransition
- Returns:
- the description of the transition.
-
getName
public String getName()
Description copied from interface:LifeCycleTransition
Returns the transition name.- Specified by:
getName
in interfaceLifeCycleTransition
- Returns:
- the transition name as a string
-
-