Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / csdk / android / OCLib / src / com / oc / annotations / OCProperty.java
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 package com.oc.annotations;
7
8 /**
9  * 
10  * Base OCProperty Interface. Integral piece used to describe a resource's functionality OTA.
11  * 
12  */
13 public @interface OCProperty {
14   String name() default "";
15
16   String type() default "";
17 }