Skip to content

Commit

Permalink
Add hhtIP field to PosPrinterRequest (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniilSolovyov and sda authored Mar 14, 2024
1 parent 7f79761 commit 31a34ca
Showing 1 changed file with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,24 @@
import com.untill.driver.interfaces.DriverRequest;

public abstract class PosPrinterRequest extends DriverRequest {
/**
* Handheld terminal IP address. This field is filled when request initiator is handheld terminal
*/
private String hhtIp;

public String getHhtIp() {
return hhtIp;
}

public void setHhtIp(String hhtIp) {
this.hhtIp = hhtIp;
}

@Override
public String toString() {
return "PosPrinterRequest{} " + super.toString();
return "PosPrinterRequest{"
+ "hhtIp='" + hhtIp + '\''
+ "} "
+ super.toString();
}
}

0 comments on commit 31a34ca

Please sign in to comment.