
fluximpl.UnzipFileActionVariable Maven / Gradle / Ivy
package fluximpl;
import java.io.Serializable;
/**
* UnzipFileAction variable.
*
* @author [email protected]
*/
public class UnzipFileActionVariable implements Serializable {
public String destination;
public String zipFile;
public UnzipFileActionVariable() {
}
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getZipFile() {
return zipFile;
}
public void setZipFile(String zipFile) {
this.zipFile = zipFile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy