alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (Exchange.java)

This example Apache CXF source code file (Exchange.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

binding, binding, bindingoperationinfo, bus, bus, conduit, destination, destination, endpoint, message, message, service, session, stringmap

The Apache CXF Exchange.java source code

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you 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.apache.cxf.message;

import org.apache.cxf.Bus;
import org.apache.cxf.binding.Binding;
import org.apache.cxf.endpoint.Endpoint;
import org.apache.cxf.service.Service;
import org.apache.cxf.service.model.BindingOperationInfo;
import org.apache.cxf.transport.Conduit;
import org.apache.cxf.transport.Destination;
import org.apache.cxf.transport.Session;

public interface Exchange extends StringMap {
    
    /**
     * Returns the inbound message for the exchange. On the client-side, this 
     * is the response. On the server-side, this is the request.
     * 
     * @return the inboubnd message
     */
    Message getInMessage();
    void setInMessage(Message m);
    
    /**
     * Returns the outbound message for the exchange. On the client-side, this 
     * is the request. On the server-side, this is the response. During the 
     * inbound message processing, the outbound message is null.
     * 
     * @return the outbound message
     */
    Message getOutMessage();
    void setOutMessage(Message m);
    
    Message getInFaultMessage();
    void setInFaultMessage(Message m);

    Message getOutFaultMessage();
    void setOutFaultMessage(Message m);
    
    Session getSession();
    
    /**
     * @return the associated incoming Destination (may be anonymous)
     */
    Destination getDestination();
    
    /**
     * @param destination the associated incoming Destination
     */    
    void setDestination(Destination destination);

    /**
     * @param message the associated message
     * @return the associated outgoing Conduit (may be anonymous)
     */
    Conduit getConduit(Message message);

    /**
     * @param conduit the associated outgoing Conduit 
     */
    void setConduit(Conduit conduit);
    
    /**
     * Determines if the exchange is one-way.
     * 
     * @return true if the exchange is known to be a one-way exchange
     */
    boolean isOneWay();
    
    /**
     * Determines if the exchange requires the frontend to wait for a 
     * response. Transports can then optimize themselves to process the 
     * response immediately instead of using a background thread or similar.
     * 
     * @return true if the frontend will wait for the response
     */
    boolean isSynchronous();
    void setSynchronous(boolean b);

    /**
     * 
     * @param b true if the exchange is known to be a one-way exchange
     */
    void setOneWay(boolean b);
    
    /**
     * {@inheritDoc}
     */
    void clear();
    
    Bus getBus();
    Service getService();
    Endpoint getEndpoint();
    Binding getBinding();
    BindingOperationInfo getBindingOperationInfo();
    
}

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF Exchange.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.