/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual * contributors by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * 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.jboss.as.quickstarts.wsba.coordinatorcompletion.simple; import com.arjuna.mw.wst11.BusinessActivityManager; import com.arjuna.mw.wst11.BusinessActivityManagerFactory; import com.arjuna.wst.SystemException; import org.jboss.as.quickstarts.wsba.coordinatorcompletion.simple.jaxws.SetServiceBA; import javax.jws.HandlerChain; import javax.jws.WebMethod; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.servlet.annotation.WebServlet; import java.util.UUID; /** * An adapter class that exposes a set as a transactional Web Service. * * @author Paul Robinson (paul.robinson@redhat.com) */ @WebService(serviceName = "SetServiceBAService", portName = "SetServiceBA", name = "SetServiceBA", targetNamespace = "http://www.jboss.org/jboss-jdf/jboss-as-quickstart/helloworld/wsba/coordinatorcompletion/set") @HandlerChain(file = "/context-handlers.xml", name = "Context Handlers") @SOAPBinding(style = SOAPBinding.Style.RPC) @WebServlet("/SetServiceBA") public class SetServiceBAImpl implements SetServiceBA { /** * Add an item to a set and enroll a Participant if necessary then pass the call through to the business logic. * * @param value the value to add to the set. * @throws AlreadyInSetException if value is already in the set * @throws SetServiceException if an error occurred when attempting to add the item to the set. */ @WebMethod public void addValueToSet(String value) throws AlreadyInSetException, SetServiceException { System.out.println("[SERVICE] invoked addValueToSet('" + value + "')"); BusinessActivityManager activityManager = BusinessActivityManagerFactory.businessActivityManager(); /* * get the transaction context of this thread: */ String transactionId; try { transactionId = activityManager.currentTransaction().toString(); } catch (SystemException e) { throw new SetServiceException("Unable to lookup existing BusinesActivity", e); } /* * Lookup existing participant or register new participant */ SetParticipantBA participantBA = SetParticipantBA.getParticipant(transactionId); if (participantBA == null) { try { // enlist the Participant for this service: SetParticipantBA participant = new SetParticipantBA(transactionId, value); SetParticipantBA.recordParticipant(transactionId, participant); System.out.println("[SERVICE] Enlisting a participant into the BA"); activityManager.enlistForBusinessAgreementWithCoordinatorCompletion(participant, "SetServiceBAImpl:" + UUID.randomUUID()); } catch (Exception e) { System.err.println("Participant enlistment failed"); throw new SetServiceException("Error enlisting participant", e); } } else { System.out.println("[SERVICE] Re-using the existing participant, already registered for this BA"); participantBA.addValue(value); } // invoke the back-end business logic System.out.println("[SERVICE] Invoking the back-end business logic"); MockSetManager.add(value); } /** * Query the set to see if it contains a particular value. * * @param value the value to check for. * @return true if the value was present, false otherwise. */ @WebMethod public boolean isInSet(String value) { return MockSetManager.isInSet(value); } /** * Empty the set * <p/> * Note: To simplify this example, this method is not part of the compensation logic, so will not be undone if the BA is * compensated. It can also be invoked outside of an active BA. */ @WebMethod public void clear() { MockSetManager.clear(); } }