Package org.structr.rest

Examples of org.structr.rest.GraphObjectGSONAdapter$PropertyMapSerializer


  private Value<String> propertyView                   = new StaticValue<>(PropertyView.Public);

  //~--- constructors ---------------------------------------------------

  public WebSocketDataGSONAdapter(final PropertyKey idProperty, final int outputNestingDepth) {
    graphObjectSerializer = new GraphObjectGSONAdapter(propertyView, idProperty, outputNestingDepth);
  }
View Full Code Here


  private DecimalFormat decimalFormat                   = new DecimalFormat("0.000000000", DecimalFormatSymbols.getInstance(Locale.ENGLISH));
  private GraphObjectGSONAdapter graphObjectGsonAdapter = null;

  public ResultGSONAdapter(Value<String> propertyView, PropertyKey idProperty, final int outputNestingDepth) {
    this.graphObjectGsonAdapter = new GraphObjectGSONAdapter(propertyView, idProperty, outputNestingDepth);
  }
View Full Code Here

TOP

Related Classes of org.structr.rest.GraphObjectGSONAdapter$PropertyMapSerializer

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.