Package org.apache.isis.runtimes.dflt.remoting.common.marshalling

Examples of org.apache.isis.runtimes.dflt.remoting.common.marshalling.ClientMarshaller


     * {@link #createTransport()} and {@link #createMarshaller(Transport)}
     * hooks.
     */
    protected ServerFacade createServerFacade() {
        final Transport transport = createTransport();
        final ClientMarshaller marshaller = createMarshaller(transport);
        final ClientConnection connection = new ClientConnectionDefault(marshaller);
        return new ServerFacadeProxy(connection);
    }
View Full Code Here


     * Overridable, but default implementation calls the {@link #createTransport()} and
     * {@link #createMarshaller(Transport)} hooks.
     */
    protected ServerFacade createServerFacade() {
        final Transport transport = createTransport();
        final ClientMarshaller marshaller = createMarshaller(transport);
        final ClientConnection connection = new ClientConnectionDefault(marshaller);
        return new ServerFacadeProxy(connection);
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.runtimes.dflt.remoting.common.marshalling.ClientMarshaller

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.