IFTTT へイベントを送信する(2)

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;
	}
}





IFTTT へ渡す変数を取り扱う Java クラスです。
スクリプトライブラリに登録して利用します。

下記、Java クラスで利用します。

IFTTT へイベントを送信する(1)
https://xpages.jp/XSnippetsJ.nsf/snippet.xsp?id=ifttt-%E3%81%B8%E3%82%A4%E3%83%98%E3%82%99%E3%83%B3%E3%83%88%E3%82%92%E9%80%81%E4%BF%A1%E3%81%99%E3%82%8B1

Java
tyoshida
July 1, 2017 at 1:54 PM
Rating
0





No comments yetLogin first to comment...