Example #1
0
  public void loadFromJson(final String jsonObject) {
    JsonConverter js = new JsonConverter();
    js.loadString(jsonObject);

    this.documentType = js.getStringNode("documentType");
    this.title = js.getStringNode("title");
    this.description = js.getStringNode("description");
    this.keywords = js.getStringArray("keywords");
    this.publicationDate = js.getDateNode("publicationDate");
  }