![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.PrivateFileBasedAdiInputParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (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