}
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);