com.falkonry.helper.models.Signal 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;
/**
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Signal {
private String valueIdentifier;
private String signalIdentifier;
/**
*
* @return
*/
public String getValueIdentifier() {
return valueIdentifier;
}
/**
*
* @param valueIdentifier
*/
public void setValueIdentifier(String valueIdentifier) {
this.valueIdentifier = valueIdentifier;
}
/**
*
* @return
*/
public String getSignalIdentifier() {
return signalIdentifier;
}
/**
*
* @param signalIdentifier
*/
public void setSignalIdentifier(String signalIdentifier) {
this.signalIdentifier = signalIdentifier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy