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

com.clover.remote.client.messages.PrintJobStatusRequest Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.clover.remote.client.messages;

/**
 * Request for status of print job
 */
public class PrintJobStatusRequest extends BaseRequest {

  private String printRequestId = null;

  /**
   * Constructor
   *
   * @param printRequestId id of the print job to be retrieved
   */
  public PrintJobStatusRequest(String printRequestId){
    this.printRequestId = printRequestId;
  }

  /**
   * Get the field value
   *
   * @return id of the print job to be retrieved
   */
  public String getPrintRequestId() {
    return printRequestId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy