Examples of XStreamBinaryConverter


Examples of winterwell.utils.io.XStreamBinaryConverter

    try {
      XStream xstream = new XStream();
      // prettier shorter xml
      XStreamUtils.initShorterXml(xstream);
      // Binary fields
      xstream.registerConverter(new XStreamBinaryConverter());
      // ConcurrentHashMaps
      xstream.registerConverter(new ConcurrentMapConverter());
      // Hack: SQL Timestamps
      xstream.registerConverter(new TimestampConverter());
      return xstream;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.