Examples of GmtDateTypeAdapter


Examples of com.gitblit.utils.JsonUtils.GmtDateTypeAdapter

  // build custom gson instance with GMT date serializer/deserializer
  // http://code.google.com/p/google-gson/issues/detail?id=281
  public static Gson gson(ExclusionStrategy... strategies) {
    GsonBuilder builder = new GsonBuilder();
    builder.registerTypeAdapter(Date.class, new GmtDateTypeAdapter());
    builder.registerTypeAdapter(Score.class, new ScoreTypeAdapter());
    if (!ArrayUtils.isEmpty(strategies)) {
      builder.setExclusionStrategies(strategies);
    }
    return builder.create();
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.