Adding ESP8266 code; modified for the latest password for LEDE
[iot2.git] / localconfig / iotpolicy / development / callbackpolicy_two.pol
1 public interface CallBackInterfaceSecond {
2
3     public int printInt();
4         public void needCallbackToo(TestClassInterface tc);
5
6         capability CallBack {
7                 description = "The quick brown fox jumps over the smart dog";
8                 description = "Another description";
9                 method = "printInt()";
10                 method = "needCallbackToo(TestClassInterface tc)";
11         }
12 }
13
14