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

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

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

import com.clover.sdk.v3.printer.Printer;

import java.util.ArrayList;
import java.util.List;

/**
 * Response object for retrieving the printers
 */
public class RetrievePrintersResponse extends BaseResponse {

  private List printers = new ArrayList<>();

  /**
   * Constructor
   *
   * @param printers a list of printers being passed back
   */
  public RetrievePrintersResponse(List printers){
    this.printers = printers;
  }

  /**
   * Get the field value
   *
   * @return a list of printers
   */
  public List getPrinters() {
    return printers;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy