All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arjuna.webservices11.wsarj.handler.InstanceIdentifierInHandler Maven / Gradle / Ivy

There is a newer version: 4.17.43.Final
Show newest version
package com.arjuna.webservices11.wsarj.handler;

import javax.xml.ws.handler.soap.SOAPMessageContext;
import javax.xml.ws.ProtocolException;

/**
 * Created by IntelliJ IDEA.
 * User: adinn
 * Date: Feb 27, 2008
 * Time: 6:16:07 PM
 * To change this template use File | Settings | File Templates.
 */
public class InstanceIdentifierInHandler extends InstanceIdentifierHandler {
    /**
     * override the parent behaviour so that this handler processes incoming arjuna instance identifiers
     * but avoids inserting them into outgoing messages
     *
     * @param context
     * @return
     * @throws javax.xml.ws.ProtocolException
     */
    protected boolean handleMessageOutbound(SOAPMessageContext context) throws ProtocolException {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy