Examples of ReturnDataStrategy


Examples of com.director.core.ReturnDataStrategy

      this.builder = builder;
   }

   @Override
   public JsonElement serialize(ResultWithStrategy src, Type typeOfSrc, JsonSerializationContext context) {
      ReturnDataStrategy strategy = src.getStrategy();
      Map<Object, List<String>> serializationMap = strategy.buildSerializationMap(src.getResult());
      for(Object o : serializationMap.keySet()) {
         builder.registerTypeAdapter(o.getClass(), new ObjectAdapter(serializationMap));
      }
      return builder.create().toJsonTree(src.getResult());
   }
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.