com.falkonry.helper.models.EntityMetaRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Falkonry Java Client to access Condition Prediction APIs.
package com.falkonry.helper.models;
/*!
* falkonry-java-client
* Copyright(c) 2017 Falkonry Inc
* MIT Licensed
*/
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
import java.util.List;
/**
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class EntityMetaRequest {
private String sourceId;
private String path;
private String label;
/**
*
* @return
*/
public String getSourceId() {
return sourceId;
}
/**
*
* @param sourceId
*/
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
/**
*
* @return
*/
public String getPath() {
return path;
}
/**
*
* @param path
*/
public void setPath(String path) {
this.path = path;
}
/**
*
* @return
*/
public String getLabel() {
return label;
}
/**
*
* @param label
*/
public void setLabel(String label) {
this.label = label;
}
}