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

org.webswing.model.internal.PrinterJobResultMsgInternal Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.model.internal;

import java.io.File;

import org.webswing.model.MsgInternal;

public class PrinterJobResultMsgInternal implements MsgInternal {

	private static final long serialVersionUID = 6352518694214860256L;
	private File pdfFile;
	private String id;
	private boolean tempFile;
	private String clientId;

	public File getPdfFile() {
		return pdfFile;
	}

	public void setPdfFile(File pdfFile) {
		this.pdfFile = pdfFile;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getClientId() {
		return clientId;
	}

	public void setClientId(String clientId) {
		this.clientId = clientId;
	}

	public boolean isTempFile() {
		return tempFile;
	}

	public void setTempFile(boolean tempFile) {
		this.tempFile = tempFile;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy