Package com.google.collide.dtogen.server.TestDtoServerImpls

Examples of com.google.collide.dtogen.server.TestDtoServerImpls.NotRoutableImpl


  }

  public void testNotRoutableImpl() {
    final String fooString = "Something";

    NotRoutableImpl dtoImpl = new NotRoutableImpl();
    dtoImpl.setSomeField(fooString);

    // Make it json and pull it back out.
    Gson gson = new Gson();
    String serialized = gson.toJson(dtoImpl);
    NotRoutable dto = NotRoutableImpl.fromJsonString(serialized);
View Full Code Here

TOP

Related Classes of com.google.collide.dtogen.server.TestDtoServerImpls.NotRoutableImpl

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.