Package com.dotmarketing.util

Examples of com.dotmarketing.util.ThreadSafeSimpleDateFormat


  public ESMappingAPIImpl() {
    if (mapper == null) {
      synchronized (this.getClass().getName()) {
        if (mapper == null) {
          mapper = new ObjectMapper();
          ThreadSafeSimpleDateFormat df = new ThreadSafeSimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
          mapper.setDateFormat(df);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.dotmarketing.util.ThreadSafeSimpleDateFormat

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.