Package railo.runtime.net.rpc.server

Examples of railo.runtime.net.rpc.server.StringSerializerFactory


                new BeanDeserializerFactory(QueryBean.class,RPCConstants.QUERY_QNAME));
   
    //Adding custom string serialization for non printable characters.
    tm.register(String.class,
        RPCConstants.STRING_QNAME,
        new StringSerializerFactory(String.class, RPCConstants.STRING_QNAME),
        new StringDeserializerFactory(String.class, RPCConstants.STRING_QNAME));
  }
View Full Code Here

TOP

Related Classes of railo.runtime.net.rpc.server.StringSerializerFactory

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.