All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.acrolinx.sidebar.pojo.settings.RequestDescription Maven / Gradle / Ivy

/* Copyright (c) 2018 Acrolinx GmbH */
package com.acrolinx.sidebar.pojo.settings;

import com.google.gson.Gson;

public class RequestDescription {
  private final String documentReference;

  /**
   * The path or filename of the document to check. In a CMS, it can be the id that is used to look
   * up the document.
   */
  public RequestDescription(String documentReference) {
    this.documentReference = documentReference;
  }

  @Override
  public String toString() {
    Gson gson = new Gson();
    return gson.toJson(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy