com.arjuna.webservices.wsba.ParticipantCompletionCoordinatorInboundEvents Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags.
* See the copyright.txt in the distribution for a full listing
* of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* (C) 2005-2006,
* @author JBoss Inc.
*/
package com.arjuna.webservices.wsba;
import com.arjuna.webservices.SoapFault;
import com.arjuna.webservices.wsaddr.AddressingContext;
import com.arjuna.webservices.wsarj.ArjunaContext;
/**
* The Participant events.
*/
public interface ParticipantCompletionCoordinatorInboundEvents
{
/**
* Handle the cancelled event.
* @param cancelled The cancelled notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void cancelled(final NotificationType cancelled, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
/**
* Handle the closed event.
* @param closed The closed notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void closed(final NotificationType closed, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
/**
* Handle the compensated event.
* @param compensated The compensated notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void compensated(final NotificationType compensated, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
/**
* Handle the completed event.
* @param completed The completed notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void completed(final NotificationType completed, final AddressingContext addressingContext,
final ArjunaContext arjunaContext) ;
/**
* Handle the exit event.
* @param exit The exit notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void exit(final NotificationType exit, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
/**
* Handle the fault event.
* @param fault The fault exception.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void fault(final ExceptionType fault, final AddressingContext addressingContext,
final ArjunaContext arjunaContext) ;
/**
* Handle the getStatus event.
* @param getStatus The getStatus notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void getStatus(final NotificationType getStatus, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
/**
* Handle the status event.
* @param status The status.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void status(final StatusType status, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
/**
* Handle the soap fault event.
* @param soapFault The soap fault.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public void soapFault(final SoapFault soapFault, final AddressingContext addressingContext, final ArjunaContext arjunaContext) ;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy