package chemp.Ifttt; public class IftttValues { private String value1; private String value2; private String value3; IftttValues(String v1, String v2, String v3) { this.value1 = v1; this.value2 = v2; this.value3 = v3; } public void setValue1(String value1) { this.value1 = value1; } public String getValue1() { return value1; } public void setValue2(String value2) { this.value2 = value2; } public String getValue2() { return value2; } public void setValue3(String value3) { this.value3 = value3; } public String getValue3() { return value3; } }