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

com.evrythng.thng.resource.model.store.PrivateFileBasedAdiInputParameters Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (c) Copyright 2015 EVRYTHNG Ltd London / Zurich
 * www.evrythng.com
 */
package com.evrythng.thng.resource.model.store;

public class PrivateFileBasedAdiInputParameters extends BaseAdiInputParameters {

	public static final String FIELD_FILE_RELATIVE_PATH = "fileRelativePath";
	private String fileRelativePath;

	public static final String FIELD_FORMAT = "format";
	private FileBasedAdiInputParameters.Format format;

	public String getFileRelativePath() {

		return fileRelativePath;
	}

	public void setFileRelativePath(final String fileRelativePath) {

		this.fileRelativePath = fileRelativePath;
	}

	public FileBasedAdiInputParameters.Format getFormat() {

		return format;
	}

	public void setFormat(final FileBasedAdiInputParameters.Format format) {

		this.format = format;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy