Package org.apache.cxf.ws.eventing.shared.faults

Examples of org.apache.cxf.ws.eventing.shared.faults.NoDeliveryMechanismEstablished


        try {
            @SuppressWarnings("unchecked")
            JAXBElement<EndpointReferenceType> notifyTo
                = (JAXBElement<EndpointReferenceType>)request.getContent().get(0);
            if (!EPRInspectionTool.containsUsableEPR(notifyTo.getValue())) {
                throw new NoDeliveryMechanismEstablished();
            }
        } catch (NullPointerException npe) {
            throw new NoDeliveryMechanismEstablished();
        } catch (IndexOutOfBoundsException ioobe) {
            throw new NoDeliveryMechanismEstablished();
        }
        ticket.setDelivery(request);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.ws.eventing.shared.faults.NoDeliveryMechanismEstablished

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.