Android SDK - Initial commit and build system updates
[platform/upstream/iotivity.git] / android / Base / app / src / main / java / org / iotivity / base / OCRepresentation.java
1 //******************************************************************
2 //
3 // Copyright 2014 MediaTek All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 package org.iotivity.base;
22
23 public class OCRepresentation extends NativeInstance {
24     final private static String TAG = "OCRepresentation";
25     static {
26         System.loadLibrary("ocstack-jni");
27     }
28
29     public OCRepresentation(long instPtr) {
30         super.nativeHandle = instPtr;
31     }
32     public OCRepresentation() {
33         super.nativeHandle = OCRepresentationConstructor();
34     }
35
36     public native long OCRepresentationConstructor();
37
38     public native int getValueInt(String str);
39     public native boolean getValueBool(String str);
40     public native String getValueString(String str);
41
42     public native void setValueInt (String str, int val);
43     public native void setValueBool (String str, boolean val);
44     public native void setValueString (String str, String val);
45
46     public native String getUri();
47
48     public native boolean hasAttribute(String str);
49 }