com.arjuna.webservices.wsat.processors.ParticipantProcessor 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.wsat.processors;
import com.arjuna.webservices.SoapFault;
import com.arjuna.webservices.wsaddr.AddressingContext;
import com.arjuna.webservices.wsarj.ArjunaContext;
import com.arjuna.webservices.wsat.NotificationType;
import com.arjuna.webservices.wsat.ParticipantInboundEvents;
/**
* The Participant processor.
* @author kevin
*/
public abstract class ParticipantProcessor
{
/**
* The participant processor.
*/
private static ParticipantProcessor PROCESSOR ;
/**
* Get the processor.
* @return The processor.
*/
public static synchronized ParticipantProcessor getProcessor()
{
return PROCESSOR ;
}
/**
* Set the processor.
* @param processor The processor.
* @return The previous processor.
*/
public static synchronized ParticipantProcessor setProcessor(final ParticipantProcessor processor)
{
final ParticipantProcessor origProcessor = PROCESSOR ;
PROCESSOR = processor ;
return origProcessor ;
}
/**
* Activate the participant.
* @param participant The participant.
* @param identifier The identifier.
*/
public abstract void activateParticipant(final ParticipantInboundEvents participant, final String identifier) ;
/**
* Deactivate the participant.
* @param participant The participant.
*/
public abstract void deactivateParticipant(final ParticipantInboundEvents participant) ;
/**
* Check whether a participant with the given id is currently active
* @param identifier The identifier.
*/
public abstract boolean isActive(final String identifier) ;
/**
* Commit.
* @param commit The commit notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public abstract void commit(final NotificationType commit, final AddressingContext addressingContext,
final ArjunaContext arjunaContext) ;
/**
* Prepare.
* @param prepare The prepare notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public abstract void prepare(final NotificationType prepare, final AddressingContext addressingContext,
final ArjunaContext arjunaContext) ;
/**
* Rollback.
* @param rollback The rollback notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public abstract void rollback(final NotificationType rollback, final AddressingContext addressingContext,
final ArjunaContext arjunaContext) ;
/**
* SOAP Fault.
* @param soapFault The SOAP fault notification.
* @param addressingContext The addressing context.
* @param arjunaContext The arjuna context.
*/
public abstract void soapFault(final SoapFault soapFault, final AddressingContext addressingContext,
final ArjunaContext arjunaContext) ;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy