Annotation Type ThingworxExtensionApiClass
-
@Target(TYPE) @Retention(RUNTIME) @Documented public @interface ThingworxExtensionApiClass
TheThingworxExtensionApiClass
annotation is used to indicate that the current class or interface is part of the Thingworx Extension Development API. The attributes indicate whether the type may safely be extended, implemented, or instantiated.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description int[]
since
Required parameter: Indicates which version of the Thingworx Platform began supporting the API.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
canExtendOrImplement
Optional parameter: Indicates whether or not extension developers are permitted to extend or implement the annotated type.boolean
canInstantiate
Optional parameter: When true, an extension developer is permitted to instantiate new instances of this type.int[]
deprecatedSince
Optional parameter: When specified, indicates that the class has been deprecated for extension developers and should no longer be used for new extension development.
-