Package org.jpox.state

Examples of org.jpox.state.IllegalStateTransitionException


     * @param tx the Transaction been committed.
     * @return new LifeCycle state.
     **/
    public LifeCycleState transitionCommit(StateManager sm, Transaction tx)
    {
        throw new IllegalStateTransitionException(this, "commit", sm);
    }
View Full Code Here


     * @param tx The transaction
     * @return new LifeCycle state.
     **/
    public LifeCycleState transitionRollback(StateManager sm, Transaction tx)
    {
        throw new IllegalStateTransitionException(this, "rollback", sm);
    }
View Full Code Here

     * @param sm StateManager.
     * @return new LifeCycle state.
     */
    public LifeCycleState transitionCommit(StateManager sm)
    {
        throw new IllegalStateTransitionException(this, "commit", sm);
    }
View Full Code Here

     * @param sm StateManager.
     * @return new LifeCycle state.
     */
    public LifeCycleState transitionRollback(StateManager sm)
    {
        throw new IllegalStateTransitionException(this, "rollback", sm);
    }
View Full Code Here

     * @param tx the Transaction been committed.
     * @return new LifeCycle state.
     **/
    public LifeCycleState transitionCommit(StateManager sm, Transaction tx)
    {
        throw new IllegalStateTransitionException(this, "commit", sm);
    }
View Full Code Here

     * @param tx The transaction
     * @return new LifeCycle state.
     **/
    public LifeCycleState transitionRollback(StateManager sm,Transaction tx)
    {
        throw new IllegalStateTransitionException(this, "rollback", sm);
    }
View Full Code Here

     * @param sm StateManager.
     * @return new LifeCycle state.
     */
    public LifeCycleState transitionCommit(StateManager sm)
    {
        throw new IllegalStateTransitionException(this, "commit", sm);
    }
View Full Code Here

     * @param sm StateManager.
     * @return new LifeCycle state.
     */
    public LifeCycleState transitionRollback(StateManager sm)
    {
        throw new IllegalStateTransitionException(this, "rollback", sm);
    }
View Full Code Here

TOP

Related Classes of org.jpox.state.IllegalStateTransitionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.