com.clover.remote.client.messages.PrintJobStatusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote-pay-java-connector Show documentation
Show all versions of remote-pay-java-connector Show documentation
Clover Connector Java library
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