diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md deleted file mode 100644 index dde02181..00000000 --- a/docs/DeveloperGuide.md +++ /dev/null @@ -1,359 +0,0 @@ -# DSLink Java Developer Guide - -[Home](https://github.com/iot-dsa-v2/sdk-dslink-java-v2) • [Javadoc](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/) - -## Warning - -Only use org.iot.dsa APIs, do not use or depend on anything in the com.* packages. - -Please utilize the -[Javadoc](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/) -for the core sdk. It's not perfect, but the more it is referenced, the better it will get. - -## Overview - -The purpose of this document is to guide the reader through the development of Java DSA links using -this SDK. Developers will build links using the org.iot.dsa.* packages found in -dslink-core sub-project. - -Key objectives of this SDK: - - - Pluggable architecture: - - Protocol independence. Primarily to support DSA V1 and V2. - - Transport independence. Websockets, plain sockets, http, and whatever else comes along. - - Support multiple Java links in the same process. - - Support JDK 1.6 for Distech Controls. - - High performance for activities such as video streaming. - - Support very large configuration databases (100K+ points). - - Support poll on demand whenever possible. - - 3rd party library independence. Some environments such as Niagara provide transport libraries - while others do not. SLF4J and Netty were explicitly bound to the original SDK but can not be - used in Niagara because of it's very strict Security Manager. - -## Creating a Link - -These are the major steps you'll take when creating a link: - -1. Copy example link. -2. Create application nodes. - -## Copy Example Link - -Copy the -[dslink-java-v2-example](https://github.com/iot-dsa-v2/dslink-java-v2-example) -project to create a new repository. It's README provides -detailed instructions for customization. - -The example link is a very simple but fully functioning link with a single root node. It is -recommended you get that running within a broker before continuing with this documentation. - -## Create Application Nodes - -Nodes are where application specific logic is bound to the link architecture. Node developers -will use various lifecycle callbacks to trigger their logic. - -<<<<<<< HEAD -First you must create a root node. It is the hook for the rest of your functionality. The -convention is to name it MainNode, but make sure it is in a unique package so that multiple links -======= -First you must create a root application node. It is the hook for the rest of your functionality. -The convention is to name it MainNode, but make sure it is in a unique package so that multiple links ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 -can be run in the same process. - -Then you will probably create additional nodes that will be descendants in the tree rooted by your -main node. - -### Main Node - -<<<<<<< HEAD -All links require a single root node and it must subclass -[org.iot.dsa.dslink.DSMainNode](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/dslink/DSMainNode.html). -The convention is to name the class MainNode but the package must be unique from any other -MainNodes so that multiple links can be run in the same process. - -When a link launches the first time, the type of the root node is looked up **dslink.json**. -The config _mainType_ must store the fully qualified class name of the root node. After the first -launch, the configuration database is serialized and the _mainType_ config will longer have an -======= -All links require a single root data node and it must subclass -[org.iot.dsa.dslink.DSMainNode](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/dslink/DSMainNode.html). -The convention is to name the class MainNode but the package must be unique from any other -MainNodes (other links) so that multiple links can be run in the same process. - -When a link launches the first time, the type of the main node is looked up **dslink.json**. -The config _handler_class_ must store the fully qualified class name of the root node. After the first -launch, the configuration database is serialized and the _handler_class_ config will longer have an ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 -impact. - -### Additional Nodes - -[org.iot.dsa.node.DSNode](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/DSNode.html) -is the organizational unit of a link. It can contain values, actions and other nodes. Most if not -all of a link's custom functionality will be implemented as DSNode subclasses. - -Subclassing DSNode requires to key steps: - -1. Configure the default children (nodes, values and actions). -2. Use various lifecycle callbacks to trigger custom functionality. - -### Constructors - -DSNode sub-classes must support the public no-arg constructor. This is how they will be -instantiated when deserializing the configuration database. - -### Defaults - -Every subclass of DSNode has a private default instance, all other instances are copies of the -default instance. It is an instanced based inheritance scheme that will allow subtypes to remove or -reorder 'fields' declared in super classes. - -Since there is a default instance in memory, You should never perform application logic unless -triggered by a callback and your node is running (started or stable). - -If a DSNode subtype needs to have specific child nodes or values (most will), it should override -the declareDefaults method. The method should: - -1. Call super.declareDefaults(). It's not always necessary but it's safest to do so. -2. Call DSNode.declareDefault(String name, DSIObject child) for each non-removable child. Do not -add dynamic children in declareDefaults, because if they are removed, they will be re-added the -next time the link is restarted. - -```java - @Override - protected void declareDefaults() { - super.declareDefaults(); - declareDefault("Do Something", DSAction.DEFAULT); - declareDefault("An Integer Value", DSInt.valueOf(0)); - declareDefault("Child Node", new DSNode()); - } -``` - -During node serialization (configuration database, not DSA interop), child values that match their -declared default are omitted. This has two benefits: - -1. A smaller node database means faster serialization / deserialization. -2. Default values can be modified in code and all existing databases with values at the default -will be automatically upgraded the next time the updated class is loaded. - -### Node Lifecycle - -It is important to know the application lifecycle. Use lifecycle callbacks to trigger custom link -functionality. - -_Nodes should not execute any application logic unless they are running (started or stable)._ - -**Stopped** - -A node is instantiated in the stopped state. If a node tree has been persisted, it will be be fully -restored in the stopped state. DSNode.onStopped will not be called, it is only called when nodes -transition from running to stopped. - -When nodes are removed from a running parent node, they will be stopped. DSNode.onStopped will be -called after all child nodes have been stopped. - -When a link is stopped, an attempt to stop the tree will be made, but it cannot be guaranteed. - -**Started** - -After the node tree is fully deserialized it will be started. A node's onStart method will be -called after all of its child nodes have been started. The only guarantee is that all child -nodes have been started. - -Nodes will also started when they are added to an already running parent node. - -**Stable** - -Stable is called after the entire tree has been started. The first time the node tree is loaded, -there is a stable delay of 5 seconds. - -Nodes added to an already stable parent will have onStart and onStable called immediately. - -When in doubt of whether to use onStarted or onStable, use onStable. - -**Callbacks** - -When a node is stable, there are several callbacks for various state changes. All callbacks -begin with **on** such as _onChildAdded()_. See the -[DSNode Javadoc](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/DSNode.html) -for a complete list. - -### Subscriptions - -Nodes should suspend, or minimize activity when nothing is interested in them. For example, if -nothing is interested in a point, it is best to not poll the point on the foreign system. - -To do this you use the following APIs: - -* DSNode.onSubscribed - Called when the node transitions from unsubscribed to subscribed. This is -not called for subsequent subscribers once in the subscribed state. -* DSNode.onUnsubscribed - Called when the node transitions from subscribed to unsubscribed. If -there are multiple subscribers, this is only called when the last one unsubscribes. -* DSNode.isSubscribed - Tells the caller whether or not the node is subscribed. - -### Values - -Values mostly represent leaf members of the node tree. There are two types of values: - -1. [org.io.dsa.node.DSElement](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/DSElement.html) - -These are the primitives that mostly map to the JSON type system and will be leaf members of the tree. -2. [org.io.dsa.node.DSIValue](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/DSIValue.html) - -These have to be able to convert to DSElements, but they carry additional meaning such as timestamp. -Nodes can implement this to have both a value and children. DSValueNode is a convenience abstract -class for this purpose. - -The node model encourages values to be immutable and singletons. This is for efficiency, the same -value instance (e.g. DSBoolean.TRUE) can be stored in many nodes. - -Whenever possible, values should also have NULL instance. Rather than storing a generic null, -this helps the system decode the proper type such as when a requester is attempting to set -a value. - -### Actions - -Actions allow allow responders to expose functionality in DSA that can't be modeled as values. - -Add actions to your node using -[org.iot.dsa.node.action.DSAction](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/action/DSAction.html). - -Override DSNode.onInvoke to handle invocations. - -```java - private DSInfo doSomething = getInfo("Do Something"); - - @Override - protected void declareDefaults() { - DSAction action = new DSAction(); - action.addParameter("Arg", DSString.valueOf("arg"), "A description"); - declareDefault("Do Something", action); - } - - private void doSomething(String arg) {} - - @Override - public ActionResult onInvoke(DSInfo actionInfo, ActionInvocation invocation) { - if (actionInfo == doSomething) { - DSElement arg = invocation.getParameters().get("Arg"); - doSomething(arg.toString()); - return null; - } - return super.onInvoke(actionInfo, invocation); - } -``` - -DSAction can be subclassed. Actions should also be singleton instances for efficiency. For -parameter-less actions that have no return value, use the DSAction.DEFAULT instance. - -### DSInfo - -All node children have corresponding DSInfo instances. This type serves serves two purposes: - -1. It carries some meta-data about the relationship between the parent node and the child. -2. It tracks whether or not the child matches a declared default. - -Important things for developers to know about DSInfo are: - -* You can configure state such as transient, readonly and hidden. -* You can declare fields in the your Java class for info instances to avoid looking up the child -every time it is needed. This is can be used to create fast getters and setters. - -Without declaring fields (lookups required): - -```java - public void declareDefaults() { - super.declareDefaults(); - declareDefault("The Int", DSInt.valueOf(0)); - } - public int getTheInt() { - DSInt theInt = (DSInt) get("The Int"); //map lookup - return theInt.toInt(); - } - public void setTheInt(int value) { - put("The Int", DSInt.valueOf(value)); //map lookup - } -``` - - -With declared fields: - -```java - private DSInfo theInt = getInfo("The Int"); //will be null in the default instance - public void declareDefaults() { - super.declareDefaults(); - declareDefault("The Int", DSInt.valueOf(0)); - } - public int getTheInt() { - return theInt.toInt(); //no lookup - } - public void setTheInt(int value) { - put(theInt, DSInt.valueOf(value)); //no lookup - } -``` - -### Metadata - -Metadata can be information such as units for number types and ranges for enums. - -When the system collects metadata about an object, it uses these steps: - -1. If the target value or node implements -[org.iot.dsa.node.DSIMetadata](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/DSIMetadata.html). -it will be given the opportunity to provide metadata first. -2. Then getMetadata on the parent node will be called with the DSInfo representing the child. -This will be useful when nodes want to store user editable metadata. - -To simplify configuring metadata, use the utility class -[org.iot.dsa.node.DSMetadata](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/node/DSMetadata.html). - -## Timers and Threads - -Use [org.iot.dsa.DSRuntime](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/DSRuntime.html). - -Please avoid using Java executors if possible. In the future we will probably monitor DSRuntime -to help determine when a system is becoming overloaded. - -Creating your own threads for long lived activities is perfectly acceptable but not necessary. - -## Logging - -Use Java Util Logging (JUL). A high performance async logger is automatically installed as the -root logger. - -Most types subclass -[org.iot.dsa.logging.DSLogger](https://iot-dsa-v2.github.io/sdk-dslink-java-v2/javadoc/index.html?org/iot/dsa/logging/DSLogger.html) -as a convenience. - -The most efficient logging will not submit a log message if the level isn't enabled. This is -how it is normally achieved with JUL: - -```java - if (myLogger.isLoggable(Level.FINE)) { - myLogger.fine(someMessage()); - } -``` - - -DSLogger enables the same but with more concise syntax: - -```java - fine(fine() ? someMessage() : null); -``` - - -DSA has it's own log levels (there can be links in many different languages). All standard -Java log level are mapped into it, but try to use the DSA levels: - -Level Guidelines - -DSA Level = Java Level - -- trace = Level.FINEST; -- debug = Level.FINER; -- fine = Level.FINE; -- warn = custom -- info = Level.INFO; -- error = Level.WARNING; -- admin = custom -- fatal = Level.SEVERE; - diff --git a/docs/javadoc/allclasses-frame.html b/docs/javadoc/allclasses-frame.html deleted file mode 100644 index f311ea10..00000000 --- a/docs/javadoc/allclasses-frame.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - -<<<<<<< HEAD - -All Classes (dslink-core 0.19.0 API) - -======= - -All Classes (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

All Classes

-
- -
- - diff --git a/docs/javadoc/allclasses-noframe.html b/docs/javadoc/allclasses-noframe.html deleted file mode 100644 index c83d281e..00000000 --- a/docs/javadoc/allclasses-noframe.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - -<<<<<<< HEAD - -All Classes (dslink-core 0.19.0 API) - -======= - -All Classes (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

All Classes

-
- -
- - diff --git a/docs/javadoc/constant-values.html b/docs/javadoc/constant-values.html deleted file mode 100644 index 63876533..00000000 --- a/docs/javadoc/constant-values.html +++ /dev/null @@ -1,849 +0,0 @@ - - - - -<<<<<<< HEAD - -Constant Field Values (dslink-core 0.19.0 API) - -======= - -Constant Field Values (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Constant Field Values

-

Contents

- -
-
- - -

org.iot.*

- - - - - -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/deprecated-list.html b/docs/javadoc/deprecated-list.html deleted file mode 100644 index 18b0556f..00000000 --- a/docs/javadoc/deprecated-list.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - -<<<<<<< HEAD - -Deprecated List (dslink-core 0.19.0 API) - -======= - -Deprecated List (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Deprecated API

-

Contents

-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/help-doc.html b/docs/javadoc/help-doc.html deleted file mode 100644 index 9b70f116..00000000 --- a/docs/javadoc/help-doc.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - -<<<<<<< HEAD - -API Help (dslink-core 0.19.0 API) - -======= - -API Help (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

How This API Document Is Organized

-
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
-
-
- -This help file applies to API documentation generated using the standard doclet.
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/index-all.html b/docs/javadoc/index-all.html deleted file mode 100644 index a49154f8..00000000 --- a/docs/javadoc/index-all.html +++ /dev/null @@ -1,5113 +0,0 @@ - - - - -<<<<<<< HEAD - -Index (dslink-core 0.19.0 API) - -======= - -Index (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
A B C D E F G H I J K L M N O P R S T U V W  - - -

A

-
-
AbstractInvokeHandler - Class in org.iot.dsa.dslink.requester
-
-
Convenience implementation of the callback passed to the invoke method in the requester.
-
-
AbstractInvokeHandler() - Constructor for class org.iot.dsa.dslink.requester.AbstractInvokeHandler
-
 
-
AbstractJsonWriter - Class in org.iot.dsa.io.json
-
 
-
AbstractJsonWriter() - Constructor for class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
AbstractListHandler - Class in org.iot.dsa.dslink.requester
-
-
Convenience implementation of the handler passed to the invoke method in the requester.
-
-
AbstractListHandler() - Constructor for class org.iot.dsa.dslink.requester.AbstractListHandler
-
 
-
AbstractReader - Class in org.iot.dsa.io
-
-
Basic implementation of DSReader.
-
-
AbstractReader() - Constructor for class org.iot.dsa.io.AbstractReader
-
 
-
AbstractSubscribeHandler - Class in org.iot.dsa.dslink.requester
-
-
Convenience implementation of the handler passed to the subscribe method in the requester.
-
-
AbstractSubscribeHandler() - Constructor for class org.iot.dsa.dslink.requester.AbstractSubscribeHandler
-
 
-
AbstractWriter - Class in org.iot.dsa.io
-
-
Basic implementation of DSWriter.
-
-
AbstractWriter() - Constructor for class org.iot.dsa.io.AbstractWriter
-
 
-
ActionInvocation - Interface in org.iot.dsa.node.action
-
-
Encapsulates the details of an action invocation and provides the mechanism for updating and open - stream.
-
-
ActionResult - Interface in org.iot.dsa.node.action
-
-
Super interface for possible results of an action.
-
-
ActionSpec - Interface in org.iot.dsa.node.action
-
-
Defines an invokable node in the DSA model.
-
-
ActionSpec.ResultType - Enum in org.iot.dsa.node.action
-
-
Defines what the action returns.
-
-
ActionTable - Interface in org.iot.dsa.node.action
-
-
Provides access to the columns and rows of a table.
-
-
ActionValues - Interface in org.iot.dsa.node.action
-
-
Simple set of return values from an action.
-
-
add(DSElement) - Method in class org.iot.dsa.node.DSList
-
-
Adds the value and returns this.
-
-
add(boolean) - Method in class org.iot.dsa.node.DSList
-
-
Appends the primitive and returns this.
-
-
add(double) - Method in class org.iot.dsa.node.DSList
-
-
Appends the primitive and returns this.
-
-
add(long) - Method in class org.iot.dsa.node.DSList
-
-
Appends the primitive and returns this.
-
-
add(String) - Method in class org.iot.dsa.node.DSList
-
-
Appends the primitive and returns this.
-
-
add(int) - Method in class org.iot.dsa.node.DSList
-
-
Appends the primitive and returns this.
-
-
add(String, DSIObject) - Method in class org.iot.dsa.node.DSNode
-
-
Adds the named child only if the name is not already in use.
-
-
addAll(DSList) - Method in class org.iot.dsa.node.DSList
-
-
Add all elements of the argument to this list and returns this.
-
-
addDays(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addDays(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addDefaultParameter(String, DSIValue, String) - Method in class org.iot.dsa.node.action.DSAction
-
-
A convenience which calls addParameter with the same arguments, and also sets the metadata - for the default value.
-
-
addHours(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addHours(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addList() - Method in class org.iot.dsa.node.DSList
-
-
Appends a new list and returns it.
-
-
addListener(DSLinkConnection.Listener) - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Adds a listener for connection events.
-
-
addMap() - Method in class org.iot.dsa.node.DSList
-
-
Appends a new map and returns it.
-
-
addMinutes(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addMinutes(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addMonths(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addMonths(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addNull() - Method in class org.iot.dsa.node.DSList
-
-
Appends null and returns this.
-
-
addParameter(DSMap) - Method in class org.iot.dsa.node.action.DSAction
-
-
Fully describes a parameter for method invocation.
-
-
addParameter(String, DSIValue, String) - Method in class org.iot.dsa.node.action.DSAction
-
-
Creates a DSMetadata, calls setName and setType on it, adds the internal map to the parameter - list and returns the metadata instance for further configuration.
-
-
addParameter(String, DSValueType, String) - Method in class org.iot.dsa.node.action.DSAction
-
-
Creates a DSMetadata, calls setName and setType on it, adds the internal map to the parameter - list and returns the metadata instance for further configuration.
-
-
addResult(DSIValue) - Method in class org.iot.dsa.node.action.DSActionValues
-
-
Values must be added in the same order they were defined in the action.
-
-
addSeconds(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addSeconds(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addValueResult(DSMap) - Method in class org.iot.dsa.node.action.DSAction
-
-
Fully describes a return value when the result type is VALUES.
-
-
addValueResult(String, DSIValue) - Method in class org.iot.dsa.node.action.DSAction
-
-
Creates a DSMetadata, calls setName and setType on it, adds the internal map to the results - list and returns the metadata instance for further configuration.
-
-
addValueResult(String, DSValueType) - Method in class org.iot.dsa.node.action.DSAction
-
-
Creates a DSMetadata, calls setName and setType on it, adds the internal map to the results - list and returns the metadata instance for further configuration.
-
-
addWeeks(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addWeeks(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addYears(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
addYears(int, long) - Static method in class org.iot.dsa.time.DSTime
-
-
Adds or subtracts the corresponding time field, does not perform any alignment.
-
-
ADMIN - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
admin - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
admin() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
admin(Object) - Method in class org.iot.dsa.logging.DSLogger
-
 
-
admin(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
 
-
alignDay(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the day.
-
-
alignDays(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of given interval.
-
-
alignHour(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the hour.
-
-
alignHours(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of given interval.
-
-
alignMinute(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the minute.
-
-
alignMinutes(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of given interval.
-
-
alignMonth(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the month.
-
-
alignSecond(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the second.
-
-
alignSeconds(int, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of given interval.
-
-
alignWeek(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the week.
-
-
alignYear(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Aligns the time fields to the start of the year.
-
-
all - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
ApiObject - Interface in org.iot.dsa.dslink.responder
-
-
Can be a node, value or an action.
-
-
append(char[], int, int) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
-
Append the characters and return this.
-
-
append(char) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Append the char and return this.
-
-
append(char[], int, int) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Append the chars and return this.
-
-
append(CharSequence) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Append the chars and return this.
-
-
append(CharSequence, int, int) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Append the chars and return this.
-
-
append(CharSequence) - Method in class org.iot.dsa.io.json.JsonWriter
-
 
-
append(char) - Method in class org.iot.dsa.io.json.JsonWriter
-
 
-
append(CharSequence, int, int) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Append the chars and return this.
-
-
append(char[], int, int) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Append the chars and return this.
-
-
AsyncLogHandler - Class in org.iot.dsa.logging
-
-
Enqueues logging records which are then processed by separate thread.
-
-
AsyncLogHandler() - Constructor for class org.iot.dsa.logging.AsyncLogHandler
-
 
-
- - - -

B

-
-
beginList() - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
beginList(int) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
beginList() - Method in interface org.iot.dsa.io.DSIWriter
-
-
Start a new list and return this.
-
-
beginList(int) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Start a new list of the given size and return this.
-
-
beginMap() - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
beginMap(int) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
beginMap() - Method in interface org.iot.dsa.io.DSIWriter
-
-
Start a new map and return this.
-
-
beginMap(int) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Start a new map of the given size and return this.
-
-
BOOLEAN_RANGE - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
- - - -

C

-
-
cancel() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
Cancel execution, will not impact current running tasks and will have no effect if - already cancelled.
-
-
CFG_AUTH_TOKEN - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_BROKER_URL - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_CONNECTION_TYPE - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_KEY_FILE - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_LOG_LEVEL - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_NODE_FILE - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_READ_TIMEOUT - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_SAVE_INTERVAL - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_STABLE_DELAY - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
CFG_WS_TRANSPORT_FACTORY - Static variable in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
childAdded(ApiObject) - Method in interface org.iot.dsa.dslink.responder.InboundListRequest
-
-
The responder should call this whenever a child is added.
-
-
childCount() - Method in class org.iot.dsa.node.DSNode
-
-
The number of children.
-
-
childRemoved(ApiObject) - Method in interface org.iot.dsa.dslink.responder.InboundListRequest
-
-
The responder should call this whenever a child is removed.
-
-
clear() - Method in class org.iot.dsa.node.DSGroup
-
-
Removes all items.
-
-
clear() - Method in class org.iot.dsa.node.DSList
-
 
-
clear() - Method in class org.iot.dsa.node.DSMap
-
 
-
clear() - Method in class org.iot.dsa.node.DSMetadata
-
 
-
clear(String) - Method in class org.iot.dsa.node.DSMetadata
-
 
-
clear() - Method in class org.iot.dsa.node.DSNode
-
-
Removes non-permanent children.
-
-
clearAllRows() - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
Only use with stream and open tables, instructs the requester to clear all existing rows.
-
-
close() - Method in interface org.iot.dsa.dslink.responder.InboundListRequest
-
-
Allows the responder to forcefully close the list stream.
-
-
close(Exception) - Method in interface org.iot.dsa.dslink.responder.InboundListRequest
-
-
Allows the responder to forcefully close the list stream.
-
-
close() - Method in interface org.iot.dsa.dslink.responder.InboundSubscribeRequest
-
-
Allows the responder to forcefully terminate the subscription.
-
-
close() - Method in interface org.iot.dsa.io.DSIReader
-
-
Close the input.
-
-
close() - Method in interface org.iot.dsa.io.DSIWriter
-
-
Close the stream.
-
-
close() - Method in class org.iot.dsa.io.json.JsonAppender
-
 
-
close() - Method in class org.iot.dsa.io.json.JsonReader
-
 
-
close() - Method in class org.iot.dsa.io.json.JsonWriter
-
 
-
close() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Closes the PrintStream, terminates the write thread and performs houseKeeping.
-
-
close() - Static method in class org.iot.dsa.logging.DSLogging
-
-
Closes all async log handlers.
-
-
close() - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
For use with streams and open tables, will have no effect if the stream is already closed.
-
-
close(Exception) - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
Close and send and error.
-
-
closeStream() - Method in interface org.iot.dsa.dslink.requester.OutboundStream
-
-
Allows the requester to close the stream.
-
-
concat(String, String, StringBuilder) - Static method in class org.iot.dsa.node.DSPath
-
-
Concatenates the two paths into the given bucket.
-
-
CONFIG - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
CONFIG_FAULT - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, a configuration error has been indentified within DSA.
-
-
CONFIG_FAULT_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
configFault - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
contains(DSElement) - Method in class org.iot.dsa.node.DSList
-
 
-
contains(String) - Method in class org.iot.dsa.node.DSMap
-
 
-
contains(String) - Method in class org.iot.dsa.node.DSNode
-
-
Whether or not this node has a child with the given name.
-
-
copy() - Method in class org.iot.dsa.node.action.DSAction
-
 
-
copy() - Method in class org.iot.dsa.node.DSElement
-
-
If an object is mutable (list or map) then this should clone it, immutable objects can simply - return themselves.
-
-
copy() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
copy() - Method in class org.iot.dsa.node.DSInfo
-
 
-
copy() - Method in interface org.iot.dsa.node.DSIObject
-
-
Return a copy if it makes sense, but return this otherwise.
-
-
copy() - Method in class org.iot.dsa.node.DSList
-
 
-
copy() - Method in class org.iot.dsa.node.DSMap
-
 
-
copy() - Method in class org.iot.dsa.node.DSNode
-
-
Returns a clone of this node and its subtree.
-
-
copy() - Method in class org.iot.dsa.node.DSNull
-
-
Returns this.
-
-
copy() - Method in class org.iot.dsa.node.DSValue
-
-
Returns this.
-
-
copy() - Method in class org.iot.dsa.node.event.DSTopic
-
-
Returns this.
-
-
count(long, long) - Method in enum org.iot.dsa.time.DSInterval
-
-
Returns the number of intervals for the given time range, or -1 if indeterminate.
-
-
currentTime() - Static method in class org.iot.dsa.time.DSDateTime
-
-
The current time.
-
-
- - - -

D

-
-
DBL_NAN - Static variable in interface org.iot.dsa.io.json.JsonConstants
-
-
How Double.NaN is encoded: "\\u001BNaN"
-
-
DBL_NEG_INF - Static variable in interface org.iot.dsa.io.json.JsonConstants
-
-
How Double.NEGATIVE_INFINITY is encoded: "\\u001B-Infinity"
-
-
DBL_POS_INF - Static variable in interface org.iot.dsa.io.json.JsonConstants
-
-
How Double.POSITIVE_INFINITY is encoded: "\\u001BInfinity"
-
-
DEBUG - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
debug - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
debug() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
debug(Object) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log a debug event.
-
-
debug(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log a debug event.
-
-
DECIMAL_PLACES - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
declareDefault(String, DSIObject) - Method in class org.iot.dsa.node.DSNode
-
-
Use this in the declareDefaults method to create a non-removable child.
-
-
declareDefaults() - Method in class org.iot.dsa.dslink.DSLink
-
-
Adds the save action, overrides should call super if they want this action.
-
-
declareDefaults() - Method in class org.iot.dsa.dslink.DSSysNode
-
 
-
declareDefaults() - Method in class org.iot.dsa.node.DSNode
-
-
The is only called once for each class.
-
-
decode(String) - Static method in class org.iot.dsa.io.DSBase64
-
-
Decodes a base 64 encoded string.
-
-
decode(DSIReader) - Static method in class org.iot.dsa.io.NodeDecoder
-
-
Reads a node tree from the given input.
-
-
decode(String) - Static method in class org.iot.dsa.node.DSBytes
-
 
-
decode() - Method in class org.iot.dsa.security.DSPasswordAes
-
-
Returns the decrypted password.
-
-
decode(String) - Static method in class org.iot.dsa.time.DSTime
-
-
This is a convenience that uses reuses and recycles a calendar instance to get the time in - millis.
-
-
decode(String, Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Converts a DSA encoded timestamp into a Java Calendar.
-
-
decodeKeys(String) - Static method in class org.iot.dsa.security.DSKeys
-
-
Decodes an instance that was encoded with encodeKeys().
-
-
decodeName(String) - Static method in class org.iot.dsa.node.DSPath
-
-
Un-escapes a name.
-
-
decodePath(String) - Static method in class org.iot.dsa.node.DSPath
-
-
Splits the path and decodes each individual name.
-
-
decodePrivate(byte[]) - Static method in class org.iot.dsa.security.DSKeys
-
-
Decodes the X9.63 encoding of a public key.
-
-
decodePublic(byte[]) - Static method in class org.iot.dsa.security.DSKeys
-
-
Decodes the X9.63 encoding of a public key.
-
-
decodeState(DSElement) - Method in class org.iot.dsa.node.DSInfo
-
 
-
DEFAULT - Static variable in class org.iot.dsa.dslink.requester.SimpleRequestHandler
-
-
An instance that can be used for those requests where the callbacks don't really matter.
-
-
DEFAULT - Static variable in class org.iot.dsa.node.action.DSAction
-
-
Use this when you have no-arg, no-return actions.
-
-
DEFAULT - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
DEFAULT_BACKUP_THRESHOLD - Static variable in class org.iot.dsa.logging.DSLogging
-
-
This is the threshold, not a hard limit: 10 megs by default.
-
-
DEFAULT_MAX_BACKUPS - Static variable in class org.iot.dsa.logging.DSLogging
-
-
The default number of backups to retain: 10 by default.
-
-
DEFAULT_MAX_QUEUE - Static variable in class org.iot.dsa.logging.DSLogging
-
-
Max async queue size: 2500 by default.
-
-
DESCRIPTION - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
DISABLED - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, the object has been disabled within DSA.
-
-
disabled - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
DISABLED_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
disconnect() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Forcefully closes an open connection.
-
-
DISPLAY_NAME - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
DOWN - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, communications are down within DSA.
-
-
down - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
DOWN_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
DSAction - Class in org.iot.dsa.node.action
-
-
Fully describes an action and routes invocations to DSNode.onInvoke.
-
-
DSAction() - Constructor for class org.iot.dsa.node.action.DSAction
-
 
-
DSActionValues - Class in org.iot.dsa.node.action
-
-
This is a convenience implementation of ActionValues.
-
-
DSActionValues(DSAction) - Constructor for class org.iot.dsa.node.action.DSActionValues
-
 
-
DSBase64 - Class in org.iot.dsa.io
-
-
Thread-safe Base64 encoder and decoder.
-
-
DSBase64() - Constructor for class org.iot.dsa.io.DSBase64
-
 
-
DSBool - Class in org.iot.dsa.node
-
-
Represents a boolean value.
-
-
DSBytes - Class in org.iot.dsa.node
-
-
Byte array that gets encoded as a base64 string.
-
-
DSDateTime - Class in org.iot.dsa.time
-
-
Wrapper for Java time.
-
-
DSDouble - Class in org.iot.dsa.node
-
-
A 64 bit floating point (Java double).
-
-
DSElement - Class in org.iot.dsa.node
-
-
The primitives of the node model.
-
-
DSElement() - Constructor for class org.iot.dsa.node.DSElement
-
 
-
DSElementType - Enum in org.iot.dsa.node
-
-
The core set of elements that translate directly to a JSON type.
-
-
DSException - Exception in org.iot.dsa.util
-
-
An runtime exception that forwards most calls to the inner exception.
-
-
DSException(Throwable) - Constructor for exception org.iot.dsa.util.DSException
-
 
-
DSFlexEnum - Class in org.iot.dsa.node
-
-
An enum where the value and range can be created at runtime, primarily intended for defining - action parameters.
-
-
DSFloat - Class in org.iot.dsa.node
-
-
A Java float.
-
-
DSGroup - Class in org.iot.dsa.node
-
-
An index accessible collection of primitives.
-
-
DSGroup() - Constructor for class org.iot.dsa.node.DSGroup
-
 
-
DSIBoolean - Interface in org.iot.dsa.node
-
-
Indicates something that is/has a boolean value.
-
-
DSIEnum - Interface in org.iot.dsa.node
-
-
DSA Enum mapping.
-
-
DSIEvent - Interface in org.iot.dsa.node.event
-
-
This is an empty interface, DSTopics are allowed to define events however they wish.
-
-
DSILevels - Interface in org.iot.dsa.logging
-
 
-
DSIMetadata - Interface in org.iot.dsa.node
-
-
Nodes and values can implement this to provide meta-data about themselves.
-
-
DSInfo - Class in org.iot.dsa.node
-
-
All node children have corresponding DSInfo instances.
-
-
DSInfoTopic - Class in org.iot.dsa.node.event
-
-
This topic is for info related events on DSNodes.
-
-
DSInfoTopic.Event - Enum in org.iot.dsa.node.event
-
-
The possible events for this topic.
-
-
DSInt - Class in org.iot.dsa.node
-
-
A Java int.
-
-
DSInternalErrorException - Exception in org.iot.dsa.dslink
-
-
Indicates an unsupported method.
-
-
DSInternalErrorException() - Constructor for exception org.iot.dsa.dslink.DSInternalErrorException
-
 
-
DSInternalErrorException(String) - Constructor for exception org.iot.dsa.dslink.DSInternalErrorException
-
 
-
DSInterval - Enum in org.iot.dsa.time
-
-
Enum representing periods of time.
-
-
DSINumber - Interface in org.iot.dsa.node
-
-
Indicates something that is/has a numeric value.
-
-
DSInvalidPathException - Exception in org.iot.dsa.dslink
-
-
Indicates a request path was invalid.
-
-
DSInvalidPathException(String) - Constructor for exception org.iot.dsa.dslink.DSInvalidPathException
-
 
-
DSIObject - Interface in org.iot.dsa.node
-
-
Super class of anything found in the node tree.
-
-
DSIPassword - Interface in org.iot.dsa.security
-
-
Defines the api for verifying passwords.
-
-
DSIReader - Interface in org.iot.dsa.io
-
-
A decoder that can be used to get an entire graph in pieces, or one large group, or somewhere in - between.
-
-
DSIReader.Token - Enum in org.iot.dsa.io
-
-
Represents the state of the reader, and determines which getter should be called next.
-
-
DSIRequester - Interface in org.iot.dsa.dslink
-
-
Interface for submitting outbound requests.
-
-
DSIResponder - Interface in org.iot.dsa.dslink
-
-
Interface for nodes in the node tree to manually handle requests.
-
-
DSIStatus - Interface in org.iot.dsa.node
-
-
Indicates something that is/has a quality.
-
-
DSIStorable - Interface in org.iot.dsa.node
-<<<<<<< HEAD -
-
Enables custom serialization for non-node values in the configuration database.
-
-
DSISubscriber - Interface in org.iot.dsa.node.event
-
-======= -
-
Enables custom serialization for non-node values in the configuration database.
-
-
DSISubscriber - Interface in org.iot.dsa.node.event
-
->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 -
DSISubscribers subscribe to DSTopics on DSNodes.
-
-
DSIValue - Interface in org.iot.dsa.node
-
-
How data values are represented in the node tree.
-
-
DSIWriter - Interface in org.iot.dsa.io
-
-
An encoder that can be used to encode large graphs with or without object instances.
-
-
DSJavaEnum - Class in org.iot.dsa.node
-
-
Wrapper for Java enums.
-
-
DSKeys - Class in org.iot.dsa.security
-
-
DSA public private key pair.
-
-
DSKeys(File) - Constructor for class org.iot.dsa.security.DSKeys
-
-
Creates a DSKeys object by decoding existing keys from the given file.
-
-
DSKeys(KeyPair) - Constructor for class org.iot.dsa.security.DSKeys
-
-
Creates a DSKeys object for an existing key pair.
-
-
DSKeys.Signer - Class in org.iot.dsa.security
-
-
Signs bytes.
-
-
DSKeys.Verifier - Class in org.iot.dsa.security
-
-
Verifies signatures.
-
-
DSLink - Class in org.iot.dsa.dslink
-
-
Represents an upstream connection, a node tree, and manages the lifecycle of both.
-
-
DSLink() - Constructor for class org.iot.dsa.dslink.DSLink
-
-
Use the load method to create links.
-
-
DSLinkConfig - Class in org.iot.dsa.dslink
-
-
Configuration options for starting a link.
-
-
DSLinkConfig() - Constructor for class org.iot.dsa.dslink.DSLinkConfig
-
-
This will create an empty unvalidated getConfig.
-
-
DSLinkConfig(File) - Constructor for class org.iot.dsa.dslink.DSLinkConfig
-
-
Can be use to change the working dir from the default process working dir.
-
-
DSLinkConfig(String) - Constructor for class org.iot.dsa.dslink.DSLinkConfig
-
-
Constructor for simulating a command line invocation, the argument will be split on the space - character.
-
-
DSLinkConfig(String[]) - Constructor for class org.iot.dsa.dslink.DSLinkConfig
-
-
Constructor for the arguments pass to a main method.
-
-
DSLinkConnection - Class in org.iot.dsa.dslink
-
-
Represents an upstream connection with a broker.
-
-
DSLinkConnection() - Constructor for class org.iot.dsa.dslink.DSLinkConnection
-
 
-
DSLinkConnection.Listener - Interface in org.iot.dsa.dslink
-
-
Intended for requester functionality so that requesters can know when to - start and stop making requests.
-
-
DSList - Class in org.iot.dsa.node
-
-
Indexed collection of elements.
-
-
DSList() - Constructor for class org.iot.dsa.node.DSList
-
 
-
DSLogger - Class in org.iot.dsa.logging
-
-
Adds an abstraction layer on Java Util Logging for two purposes: - - - - To use the DSA levels.
-
-
DSLogger() - Constructor for class org.iot.dsa.logging.DSLogger
-
 
-
DSLogging - Class in org.iot.dsa.logging
-
-
Static utilities for configuring the logging subsystem.
-
-
DSLong - Class in org.iot.dsa.node
-
-
A 64 bit integer (a Java long).
-
-
DSMainNode - Class in org.iot.dsa.dslink
-
-
The root DSNode that triggers a link's custom functionality .
-
-
DSMainNode() - Constructor for class org.iot.dsa.dslink.DSMainNode
-
 
-
DSMap - Class in org.iot.dsa.node
-
-
String keyed collection of elements that preserves the order of addition.
-
-
DSMap() - Constructor for class org.iot.dsa.node.DSMap
-
 
-
DSMap.Entry - Class in org.iot.dsa.node
-
-
Allows values to be accessed quickly by index in the list, rather than having to do a key - lookup in the map.
-
-
DSMetadata - Class in org.iot.dsa.node
-
-
Utility fon constructing metadata maps.
-
-
DSMetadata() - Constructor for class org.iot.dsa.node.DSMetadata
-
 
-
DSMetadata(DSMap) - Constructor for class org.iot.dsa.node.DSMetadata
-
 
-
DSNode - Class in org.iot.dsa.node
-
-
The organizational unit of the node tree.
-
-
DSNode() - Constructor for class org.iot.dsa.node.DSNode
-
 
-
DSNull - Class in org.iot.dsa.node
-
-
Try not to use, it is for decoding raw json.
-
-
DSPasswordAes - Class in org.iot.dsa.security
-
-
Stores an encrypted password which can be decrypted.
-
-
DSPasswordSha256 - Class in org.iot.dsa.security
-
-
Stores and verifies passwords using a SHA-256 hash of the text.
-
-
DSPath - Class in org.iot.dsa.node
-
-
Represents a path in the node tree.
-
-
DSPath(String) - Constructor for class org.iot.dsa.node.DSPath
-
 
-
DSPermission - Enum in org.iot.dsa.security
-
-
Used to define the required permissions for various objects.
-
-
DSPermissionException - Exception in org.iot.dsa.dslink
-
-
Indicates a request has insufficient permissions.
-
-
DSPermissionException() - Constructor for exception org.iot.dsa.dslink.DSPermissionException
-
 
-
DSPermissionException(String) - Constructor for exception org.iot.dsa.dslink.DSPermissionException
-
 
-
DSRegistry - Class in org.iot.dsa.node
-
-
Static type related meta-data.
-
-
DSRegistry() - Constructor for class org.iot.dsa.node.DSRegistry
-
 
-
DSRequestException - Exception in org.iot.dsa.dslink
-
-
Indicates something was wrong with a request.
-
-
DSRequestException() - Constructor for exception org.iot.dsa.dslink.DSRequestException
-
 
-
DSRequestException(String) - Constructor for exception org.iot.dsa.dslink.DSRequestException
-
 
-
DSRuntime - Class in org.iot.dsa
-
-
DSA thread pool and timers.
-
-
DSRuntime.Timer - Class in org.iot.dsa
-
-
Can be used to inspect and cancel tasks passed to the run methods in DSRuntime.
-
-
DSStatus - Class in org.iot.dsa.node
-
-
Represent the health, quality or condition of an object.
-
-
DSString - Class in org.iot.dsa.node
-
-
String wrapper.
-
-
DSSysNode - Class in org.iot.dsa.dslink
-
-
The root of the system nodes.
-
-
DSSysNode() - Constructor for class org.iot.dsa.dslink.DSSysNode
-
 
-
DSTime - Class in org.iot.dsa.time
-
-
Misc time utility functions.
-
-
DSTopic - Class in org.iot.dsa.node.event
-
-
DSISubscribers subscribe to DSTopics on DSNodes.
-
-
DSTopic() - Constructor for class org.iot.dsa.node.event.DSTopic
-
 
-
DSUnsupportedException - Exception in org.iot.dsa.dslink
-
-
Indicates an unsupported method.
-
-
DSUnsupportedException() - Constructor for exception org.iot.dsa.dslink.DSUnsupportedException
-
 
-
DSUnsupportedException(String) - Constructor for exception org.iot.dsa.dslink.DSUnsupportedException
-
 
-
DSUtil - Class in org.iot.dsa.util
-
-
Common utilities.
-
-
DSValue - Class in org.iot.dsa.node
-
-
A convenience that provides some common default behavior.
-
-
DSValue() - Constructor for class org.iot.dsa.node.DSValue
-
 
-
DSValueNode - Class in org.iot.dsa.node
-
-
A convenience implementation of a node that is also a value.
-
-
DSValueNode() - Constructor for class org.iot.dsa.node.DSValueNode
-
 
-
DSValueTopic - Class in org.iot.dsa.node.event
-
-
This topic is for change of value events on DSNodes.
-
-
DSValueTopic.Event - Enum in org.iot.dsa.node.event
-
-
The possible events from this topic.
-
-
DSValueType - Enum in org.iot.dsa.node
-
-
These are the primitive types in the DSA protocol.
-
-
- - - -

E

-
-
EDITOR - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
EMPTY - Static variable in class org.iot.dsa.node.DSString
-
-
The string of length 0.
-
-
encode(byte[]) - Static method in class org.iot.dsa.io.DSBase64
-
-
Encodes the bytes into a single line string with no padding.
-
-
encode(byte[], int) - Static method in class org.iot.dsa.io.DSBase64
-
-
Encodes the buffer into a String with the given line length.
-
-
encode(DSIWriter, DSNode) - Static method in class org.iot.dsa.io.NodeEncoder
-
-
Writes the node tree to the given writer.
-
-
encode(byte[]) - Static method in class org.iot.dsa.node.DSBytes
-
 
-
encode(byte[]) - Static method in class org.iot.dsa.security.DSPasswordAes
-
-
Encrypts the given bytes.
-
-
encode(String) - Static method in class org.iot.dsa.security.DSPasswordAes
-
-
Encrypts the given text.
-
-
encode(byte[]) - Static method in class org.iot.dsa.security.DSPasswordSha256
-
-
SHA-256 hash of the bytes encoded as url safe base 64..
-
-
encode(String) - Static method in class org.iot.dsa.security.DSPasswordSha256
-
-
SHA-256 hash of the UTF-8 bytes, encoded as url safe base 64..
-
-
encode(long, boolean) - Static method in class org.iot.dsa.time.DSTime
-
-
Converts a Java Calendar into a DSA encoded timestamp.
-
-
encode(long, boolean, StringBuilder) - Static method in class org.iot.dsa.time.DSTime
-
-
Converts a Java Calendar into a DSA encoded timestamp.
-
-
encode(Calendar, boolean, StringBuilder) - Static method in class org.iot.dsa.time.DSTime
-
-
Converts a Java Calendar into a DSA encoded timestamp.
-
-
encodeForFiles(Calendar, StringBuilder) - Static method in class org.iot.dsa.time.DSTime
-
-
Converts a Java Calendar into a number safe for file names: YYMMDDHHMMSS.
-
-
encodeForLogs(Calendar, StringBuilder) - Static method in class org.iot.dsa.time.DSTime
-
-
Converts a Java Calendar into a shorter human readable timestamp for use in logging files.
-
-
encodeKeys() - Method in class org.iot.dsa.security.DSKeys
-
-
Encodes the key pair which can be then decoded with decodeKeys().
-
-
encodeName(String) - Static method in class org.iot.dsa.node.DSPath
-
-
Encodes a name for being in a path.
-
-
encodeName(String, StringBuilder) - Static method in class org.iot.dsa.node.DSPath
-
-
Encodes a name for being in a path.
-
-
encodeNameV1(String, StringBuilder) - Static method in class org.iot.dsa.node.DSPath
-
-
Encodes a DSA v1 name for use outside of a path.
-
-
encodePath(boolean, String...) - Static method in class org.iot.dsa.node.DSPath
-
-
Creates a properly encoded path from the given names.
-
-
encodePath(boolean, String[], int) - Static method in class org.iot.dsa.node.DSPath
-
-
Creates a properly encoded path from the given names.
-
-
encodePath(DSNode) - Static method in class org.iot.dsa.node.DSPath
-
-
Ascends the tree and encodes all the node names into a path.
-
-
encodePublic() - Method in class org.iot.dsa.security.DSKeys
-
-
X9.63 encoding of the public key.
-
-
encodePublicHashDsId() - Method in class org.iot.dsa.security.DSKeys
-
-
Base64 encoding (no padding and url safe) of the SHA256 hash of the public key.
-
-
encodeState() - Method in class org.iot.dsa.node.DSInfo
-
 
-
encodeUrl(byte[]) - Static method in class org.iot.dsa.io.DSBase64
-
-
Encodes to a URL safe base64 string.
-
-
endList() - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
endList() - Method in interface org.iot.dsa.io.DSIWriter
-
-
End the current list.
-
-
endMap() - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
endMap() - Method in interface org.iot.dsa.io.DSIWriter
-
-
End the current map.
-
-
ENUM_RANGE - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
equal(Object, Object) - Static method in class org.iot.dsa.util.DSUtil
-
-
Comparison that takes null into account; null == null.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSBool
-
 
-
equals(Object) - Method in class org.iot.dsa.node.DSBytes
-
-
True if the argument is a DSINumber and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSDouble
-
-
True if the argument is a DSINumber and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSFlexEnum
-
-
True if the argument is a DSFlexEnum and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSFloat
-
-
True if the argument is a DSINumber and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSGroup
-
 
-
equals(Object) - Method in class org.iot.dsa.node.DSInfo
-
 
-
equals(Object) - Method in class org.iot.dsa.node.DSInt
-
-
True if the argument is a DSINumber and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSJavaEnum
-
-
True if the argument is a DSDynamicEnum and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSLong
-
-
True if the argument is a DSINumber and the values are equal or they are both isNull.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSMap.Entry
-
 
-
equals(Object) - Method in class org.iot.dsa.node.DSMap
-
 
-
equals(Object) - Method in class org.iot.dsa.node.DSNull
-
-
True of the arg == this.
-
-
equals(Object) - Method in class org.iot.dsa.node.DSStatus
-
 
-
equals(Object) - Method in class org.iot.dsa.node.DSString
-
 
-
equals(Object) - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
equals(Object) - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
equals(Object) - Method in class org.iot.dsa.time.DSDateTime
-
 
-
equalsDefault() - Method in class org.iot.dsa.node.DSInfo
-
-
True if this proxies a default and the state and value match the default.
-
-
equalsDefaultState() - Method in class org.iot.dsa.node.DSInfo
-
-
True if the state matches the default state.
-
-
equalsDefaultType() - Method in class org.iot.dsa.node.DSInfo
-
-
True if this proxies a default and the value type matches the default.
-
-
equalsDefaultValue() - Method in class org.iot.dsa.node.DSInfo
-
-
True if this proxies a default and the value matches the default.
-
-
ERROR - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
error - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
error() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
error(Object) - Method in class org.iot.dsa.logging.DSLogger
-
 
-
error(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
 
-
ErrorType - Enum in org.iot.dsa.dslink.requester
-
 
-
- - - -

F

-
-
FALSE - Static variable in class org.iot.dsa.node.DSBool
-
 
-
FATAL - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
fatal - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
fatal() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
fatal(Object) - Method in class org.iot.dsa.logging.DSLogger
-
 
-
fatal(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
 
-
FAULT - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, an operational error (exception) has occurred within DSA.
-
-
fault - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
FAULT_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
FileLogHandler - Class in org.iot.dsa.logging
-
-
Logs records to a file.
-
-
FINE - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
fine - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
fine() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
fine(Object) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log a frequent event.
-
-
fine(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log a frequent event.
-
-
fire(DSTopic, DSIEvent, DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Notifies subscribers of the event.
-
-
fire(DSTopic, DSIEvent, DSInfo, Object...) - Method in class org.iot.dsa.node.DSNode
-
-
Notifies subscribers of the event.
-
-
first() - Method in class org.iot.dsa.node.DSGroup
-
-
Returns the item at index 0.
-
-
flush() - Method in interface org.iot.dsa.io.DSIWriter
-
-
Flush the stream.
-
-
flush() - Method in class org.iot.dsa.io.json.JsonAppender
-
 
-
flush() - Method in class org.iot.dsa.io.json.JsonWriter
-
 
-
flush() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
 
-
forString(String) - Static method in enum org.iot.dsa.security.DSPermission
-
 
-
fromHex(CharSequence) - Static method in class org.iot.dsa.node.DSBytes
-
-
Converts a hex string into a byte array.
-
-
- - - -

G

-
-
generateHmacSHA256Signature(byte[], byte[]) - Static method in class org.iot.dsa.security.DSKeys
-
 
-
generateSharedSecret(byte[]) - Method in class org.iot.dsa.security.DSKeys
-
-
Uses the given public key to generate an ECDH shared secret.
-
-
generateSharedSecret(String) - Method in class org.iot.dsa.security.DSKeys
-
-
Uses the given public key to generate an ECDH shared secret.
-
-
get(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Returns the value at the given index.
-
-
get(int, boolean) - Method in class org.iot.dsa.node.DSGroup
-
-
Optional getter.
-
-
get(int, double) - Method in class org.iot.dsa.node.DSGroup
-
-
Optional getter.
-
-
get(int, int) - Method in class org.iot.dsa.node.DSGroup
-
-
Optional getter.
-
-
get(int, long) - Method in class org.iot.dsa.node.DSGroup
-
-
Optional getter.
-
-
get(int, String) - Method in class org.iot.dsa.node.DSGroup
-
-
Optional getter.
-
-
get(int) - Method in class org.iot.dsa.node.DSList
-
 
-
get(int) - Method in class org.iot.dsa.node.DSMap
-
 
-
get(String) - Method in class org.iot.dsa.node.DSMap
-
-
Returns the value for the given key.
-
-
get(String, boolean) - Method in class org.iot.dsa.node.DSMap
-
-
Optional getter, returns the provided default if the value mapped to the key is null or not - convertible.
-
-
get(String, double) - Method in class org.iot.dsa.node.DSMap
-
-
Optional getter, returns the provided default if the value mapped to the key is null.
-
-
get(String, int) - Method in class org.iot.dsa.node.DSMap
-
-
Optional getter, returns the provided default if the value mapped to the key is null or not - convertible.
-
-
get(String, long) - Method in class org.iot.dsa.node.DSMap
-
-
Optional getter, returns the provided default if the value mapped to the key is null or not - convertible.
-
-
get(String, String) - Method in class org.iot.dsa.node.DSMap
-
-
Optional getter, returns the provided default if the value mapped to the key is null.
-
-
get(String) - Method in class org.iot.dsa.node.DSNode
-
-
Returns the child value with the given name, or null.
-
-
getAction() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
The action, should only be called if isAction() returns true.
-
-
getAction() - Method in interface org.iot.dsa.node.action.ActionResult
-
-
The action that was invoked.
-
-
getAction() - Method in class org.iot.dsa.node.action.DSActionValues
-
 
-
getAction() - Method in class org.iot.dsa.node.DSInfo
-
 
-
getBackups() - Method in class org.iot.dsa.logging.FileLogHandler
-
-
Backup files for this logging, found in the same directory as the active logging.
-
-
getBit(int, int) - Static method in class org.iot.dsa.util.DSUtil
-
-
Returns true if the bit at the given index is set.
-
-
getBoolean() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getBoolean() - Method in interface org.iot.dsa.io.DSIReader
-
-
Returns the value when last() == BOOLEAN.
-
-
getBoolean(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getBoolean(String) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive getter.
-
-
getBooleanRange() - Method in class org.iot.dsa.node.DSMetadata
-
-
The boolean range, or null.
-
-
getBrokerUri() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
If not set, will look for the getConfig in dslink.json.
-
-
getBytes() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getBytes() - Method in interface org.iot.dsa.io.DSIReader
-
-
Returns the value when last() == BYTES.
-
-
getBytes() - Method in class org.iot.dsa.node.DSBytes
-
-
The raw bytes, do not modify.
-
-
getCalendar() - Static method in class org.iot.dsa.time.DSTime
-
-
Attempts to reuse a calendar instance, the timezone will be set to TimeZone.getDefault().
-
-
getCalendar(long) - Static method in class org.iot.dsa.time.DSTime
-
-
Attempts to reuse a calendar instance and sets the time in millis to the argument and the - timezone to TimeZone.getDefault().
-
-
getCause() - Method in exception org.iot.dsa.util.DSException
-
 
-
getChildren() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
Iterator of child objects, should only be called if hasChildren() returns true.
-
-
getChildren() - Method in class org.iot.dsa.node.DSInfo
-
 
-
getColumns() - Method in interface org.iot.dsa.node.action.ActionTable
-
-
Column definitions, optional but highly recommended.
-
-
getConfig() - Method in class org.iot.dsa.dslink.DSLink
-
 
-
getConfig(String, boolean) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Looks for the value in dslink.json and if not found, returns the fallback.
-
-
getConfig(String, double) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Looks for the value in dslink.json and if not found, returns the fallback.
-
-
getConfig(String, int) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Looks for the value in dslink.json and if not found, returns the fallback.
-
-
getConfig(String, long) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Looks for the value in dslink.json and if not found, returns the fallback.
-
-
getConfig(String, String) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Looks for the value in dslink.json and if not found, returns the fallback.
-
-
getConnection() - Method in class org.iot.dsa.dslink.DSLink
-
 
-
getConnection() - Method in class org.iot.dsa.dslink.DSSysNode
-
 
-
getConnectionId() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
A unique descriptive tag such as a combination of the link name and the broker host.
-
-
getDecimalPlaces() - Method in class org.iot.dsa.node.DSMetadata
-
-
The decimal precision or null.
-
-
getDecoder(Class) - Static method in class org.iot.dsa.node.DSRegistry
-
-
The instance to use for decoding.
-
-
getDefault() - Method in class org.iot.dsa.node.DSMetadata
-
-
The default value for an action parameter, or null.
-
-
getDefaultLogger() - Static method in class org.iot.dsa.logging.DSLogging
-
-
The default logger.
-
-
getDefaultObject() - Method in class org.iot.dsa.node.DSInfo
-
-
If this represents a dynamic child, this just returns the current value.
-
-
getDepth() - Method in class org.iot.dsa.io.AbstractWriter
-
-
Current depth in the tree, will be needed by writeNewLineIndent.
-
-
getDescription() - Method in class org.iot.dsa.node.DSMetadata
-
-
The description, or null.
-
-
getDetail() - Method in exception org.iot.dsa.dslink.DSRequestException
-
-
Additional information to supply to the remote endpoint.
-
-
getDisplayName() - Method in class org.iot.dsa.node.DSMetadata
-
-
The alternate display name, or null.
-
-
getDouble() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getDouble() - Method in interface org.iot.dsa.io.DSIReader
-
-
Returns the value when last() == DOUBLE.
-
-
getDouble(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getDouble(String) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive getter.
-
-
getDsaVersion() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
getDsId() - Method in class org.iot.dsa.dslink.DSLink
-
-
Returns the unique id of the connection.
-
-
getDslinkJson() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
If not set, this will attempt to open dslink.json in the working the process directory.
-
-
getEditor() - Method in class org.iot.dsa.node.DSMetadata
-
-
The editor, or null.
-
-
getElement() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getElement() - Method in interface org.iot.dsa.io.DSIReader
-
-
Returns the DSElement when last() == raw type or ROOT.
-
-
getElement() - Method in class org.iot.dsa.node.DSInfo
-
-
A convenience that casts getObject().
-
-
getElement(String) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for (DSElement) get(name).
-
-
getElementType() - Method in class org.iot.dsa.node.DSBool
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSBytes
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSDouble
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSElement
-
-
For switch statements.
-
-
getElementType() - Method in class org.iot.dsa.node.DSList
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSLong
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSMap
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSNull
-
 
-
getElementType() - Method in class org.iot.dsa.node.DSString
-
 
-
getEntry(int) - Method in class org.iot.dsa.node.DSMap
-
 
-
getEntry(String) - Method in class org.iot.dsa.node.DSMap
-
 
-
getEnumRange() - Method in class org.iot.dsa.node.DSMetadata
-
-
The editor, or null.
-
-
getEnums(DSList) - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
getEnums(DSList) - Method in interface org.iot.dsa.node.DSIEnum
-
-
Adds the range of possible values to the given bucket.
-
-
getEnums(DSList) - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
getFirst() - Method in class org.iot.dsa.node.DSNode
-
-
The first child, or null.
-
-
getFirstInfo() - Method in class org.iot.dsa.node.DSNode
-
-
The first child info, or null.
-
-
getFirstNodeInfo() - Method in class org.iot.dsa.node.DSNode
-
-
The info for the first child node, or null.
-
-
getFloat(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getHandler(File) - Static method in class org.iot.dsa.logging.FileLogHandler
-
-
Will return an existing handler for the given file, or create a new one.
-
-
getHelpText() - Static method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Help text for command line options.
-
-
getHouseKeepingIntervalMillis() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Ten seconds by default, this is a guideline more than anything else.
-
-
getInfo() - Method in class org.iot.dsa.node.DSNode
-
-
DSInfo for this node in its parent, or null if un-parented.
-
-
getInfo(String) - Method in class org.iot.dsa.node.DSNode
-
-
Returns the info for the child with the given name, or null.
-
-
getInt(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getInt(String) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive getter.
-
-
getInterval() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
The interval between runs, zero or less for no interval.
-
-
getKey() - Method in class org.iot.dsa.node.DSMap.Entry
-
 
-
getKey(int) - Method in class org.iot.dsa.node.DSMap
-
-
Returns the key at the given index.
-
-
getKeys() - Method in class org.iot.dsa.dslink.DSLink
-
-
Public / private keys of the link, used to prove identity with brokers.
-
-
getKeys() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
If not set, will attempt to use the getConfig in dslink.json and fall back to '.key' in the - process directory if necessary.
-
-
getKeys() - Method in class org.iot.dsa.security.DSKeys
-
-
The public and private keys.
-
-
getLast() - Method in class org.iot.dsa.node.DSNode
-
-
The last child, or null.
-
-
getLastInfo() - Method in class org.iot.dsa.node.DSNode
-
-
The last child info, or null.
-
-
getLastPathElement() - Method in class org.iot.dsa.node.DSPath
-
 
-
getLevel() - Method in enum org.iot.dsa.security.DSPermission
-
 
-
getLink() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
The link using this connection.
-
-
getLink() - Method in class org.iot.dsa.dslink.DSMainNode
-
-
The parent link or null.
-
-
getLink() - Method in class org.iot.dsa.dslink.DSSysNode
-
 
-
getLinkName() - Method in class org.iot.dsa.dslink.DSLink
-
-
As defined in dslink.json.
-
-
getLinkName() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
getList() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getList() - Method in interface org.iot.dsa.io.DSIReader
-
-
This should only be called when last() == BEGIN_LIST and it will decodeKeys the entire - list.
-
-
getList(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getList(String) - Method in class org.iot.dsa.node.DSMap
-
-
Return the list, or null.
-
-
getLocalizedMessage() - Method in exception org.iot.dsa.util.DSException
-
 
-
getLogger(String, File) - Static method in class org.iot.dsa.logging.DSLogging
-
-
Adds a FileLogHandler to the named logger, if there isn't one already.
-
-
getLogLevel() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
If not set, will attempt to use the getConfig in dslink.json but fall back to 'info' if - necessary.
-
-
getLogName() - Method in class org.iot.dsa.dslink.DSLink
-
 
-
getLogName() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
 
-
getLogName() - Method in class org.iot.dsa.dslink.DSMainNode
-
 
-
getLogName() - Method in class org.iot.dsa.dslink.DSSysNode
-
 
-
getLogName() - Method in class org.iot.dsa.logging.DSLogger
-
-
Override point, returns the simple class name by default.
-
-
getLogName() - Method in class org.iot.dsa.node.DSNode
-
 
-
getLong() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getLong() - Method in interface org.iot.dsa.io.DSIReader
-
-
Returns the value when last() == LONG.
-
-
getLong(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getLong(String) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive getter.
-
-
getMain() - Method in class org.iot.dsa.dslink.DSLink
-
 
-
getMainType() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
The type of the root node.
-
-
getMap() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getMap() - Method in interface org.iot.dsa.io.DSIReader
-
-
This should only be called when last() == BEGIN_MAP and it will decodeKeys the entire map.
-
-
getMap(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getMap(String) - Method in class org.iot.dsa.node.DSMap
-
-
Returns the map value for the given key, or null.
-
-
getMap() - Method in class org.iot.dsa.node.DSMetadata
-
 
-
getMaxBackups() - Method in class org.iot.dsa.logging.FileLogHandler
-
-
The number of backup files to retain.
-
-
getMaxValue() - Method in class org.iot.dsa.node.DSMetadata
-
-
The max value, or null.
-
-
getMessage() - Method in exception org.iot.dsa.util.DSException
-
 
-
getMetadata(DSMap) - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
 
-
getMetadata(DSMap) - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
getMetadata(DSMap) - Method in interface org.iot.dsa.node.DSIMetadata
-
-
The entity should add any metadata about itself to the given map.
-
-
getMetadata(DSMap) - Method in class org.iot.dsa.node.DSInfo
-
 
-
getMetadata(DSMap) - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
getMetadata(DSInfo, DSMap) - Static method in class org.iot.dsa.node.DSMetadata
-
-
Fully acquires metadata about the info.
-
-
getMetadata(DSInfo, DSMap) - Method in class org.iot.dsa.node.DSNode
-
-
Override point, add any meta data for the given info to the provided bucket.
-
-
getMinValue() - Method in class org.iot.dsa.node.DSMetadata
-
-
The min value, or null.
-
-
getName() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
The display name.
-
-
getName() - Method in class org.iot.dsa.node.DSInfo
-
 
-
getName() - Method in class org.iot.dsa.node.DSMetadata
-
-
The name, or null.
-
-
getName() - Method in class org.iot.dsa.node.DSNode
-
-
Returns the name of this node in its parent, or null if un-parented.
-
-
getNode() - Method in class org.iot.dsa.node.DSInfo
-
-
A convenience that casts getObject().
-
-
getNode(String) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for (DSNode) get(name).
-
-
getNodesFile() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
If not set, will attempt to use the getConfig in dslink.json but fall back to 'nodes.zip' in - the process directory if necessary.
-
-
getObject() - Method in class org.iot.dsa.node.DSInfo
-
 
-
getOut() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
The sink for formatted messages.
-
-
getParameters() - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
The parameters supplied by the requester, or null.
-
-
getParameters() - Method in interface org.iot.dsa.node.action.ActionSpec
-
-
Returns an iterator for each parameter.
-
-
getParameters() - Method in class org.iot.dsa.node.action.DSAction
-
 
-
getParameters() - Static method in class org.iot.dsa.security.DSKeys
-
-
The AlgorithmParameterSpec for the predefined elliptic curve secp256r1.
-
-
getParams() - Method in class org.iot.dsa.dslink.requester.AbstractInvokeHandler
-
-
Returns the value passed to onInit.
-
-
getParent() - Method in class org.iot.dsa.node.DSInfo
-
 
-
getParent() - Method in class org.iot.dsa.node.DSNode
-
-
Returns the parent node, or null.
-
-
getPath() - Method in class org.iot.dsa.dslink.requester.AbstractInvokeHandler
-
-
Returns the value passed to onInit.
-
-
getPath() - Method in class org.iot.dsa.dslink.requester.AbstractListHandler
-
-
Returns the value passed to onInit.
-
-
getPath() - Method in class org.iot.dsa.dslink.requester.AbstractSubscribeHandler
-
-
Returns the value passed to onInit.
-
-
getPath() - Method in interface org.iot.dsa.dslink.responder.InboundRequest
-
-
The target of the request.
-
-
getPath() - Method in class org.iot.dsa.node.DSNode
-
-
The DSA path, properly encoded.
-
-
getPath() - Method in class org.iot.dsa.node.DSPath
-
-
The raw fully encoded path.
-
-
getPathElements() - Method in class org.iot.dsa.node.DSPath
-
-
The individual, decoded path elements.
-
-
getPermission() - Method in interface org.iot.dsa.dslink.responder.InboundSetRequest
-
-
The permission to set with.
-
-
getPermission() - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
The permission level of the invoker, should be verified against the permission level required - by the action.
-
-
getPermission() - Method in interface org.iot.dsa.node.action.ActionSpec
-
-
Minimum permission level required to invoke.
-
-
getPermission() - Method in class org.iot.dsa.node.action.DSAction
-
-
Not used.
-
-
getPlaceHolder() - Method in class org.iot.dsa.node.DSMetadata
-
-
Placeholder text for text fields, or null.
-
-
getPrivateKey() - Method in class org.iot.dsa.security.DSKeys
-
-
A convenience that casts the private key.
-
-
getPublicKey() - Method in class org.iot.dsa.security.DSKeys
-
-
A convenience that casts the public key.
-
-
getQos() - Method in class org.iot.dsa.dslink.requester.AbstractSubscribeHandler
-
-
Returns the value passed to onInit.
-
-
getRequester() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
 
-
getRequestId() - Method in interface org.iot.dsa.dslink.responder.InboundRequest
-
-
Unique ID of the request, or 0 for subscriptions.
-
-
getResult(long) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Waits for the stream to close before returning, or the timeout to occur.
-
-
getResultType() - Method in interface org.iot.dsa.node.action.ActionSpec
-
-
What the action returns.
-
-
getResultType() - Method in class org.iot.dsa.node.action.DSAction
-
 
-
getRows() - Method in interface org.iot.dsa.node.action.ActionTable
-
-
This should return an iterator for the initial set of rows, or null if there aren't any.
-
-
getRunnable() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
The runnable being managed by this timer.
-
-
getSession() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
 
-
getSignature() - Method in class org.iot.dsa.security.DSKeys.Signer
-
-
The signature for all bytes passed to the update method.
-
-
getSignatureBase64() - Method in class org.iot.dsa.security.DSKeys.Signer
-
-
The base 64 encoding of the signature for all bytes passed to the update method.
-
-
getStackTrace() - Method in exception org.iot.dsa.util.DSException
-
 
-
getStream() - Method in class org.iot.dsa.dslink.requester.AbstractInvokeHandler
-
-
Returns the value passed to onInit.
-
-
getStream() - Method in class org.iot.dsa.dslink.requester.AbstractListHandler
-
-
Returns the value passed to onInit.
-
-
getStream() - Method in class org.iot.dsa.dslink.requester.AbstractSubscribeHandler
-
-
Returns the value passed to onInit.
-
-
getString() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
getString() - Method in interface org.iot.dsa.io.DSIReader
-
-
Returns the value when last() == STRING.
-
-
getString(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Primitive getter.
-
-
getString(String) - Method in class org.iot.dsa.node.DSMap
-
-
Returns the String value for the given key, or null.
-
-
getSubscriptionId() - Method in interface org.iot.dsa.dslink.responder.InboundSubscribeRequest
-
-
Unique subscription id for this path.
-
-
getSys() - Method in class org.iot.dsa.dslink.DSLink
-
 
-
getSys() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
 
-
getTarget() - Method in interface org.iot.dsa.dslink.responder.OutboundListResponse
-
-
The object that represents the path of the request.
-
-
getThreadName() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Used to name the thread that processes logging records.
-
-
getThreadName() - Method in class org.iot.dsa.logging.FileLogHandler
-
 
-
getThreadName() - Method in class org.iot.dsa.logging.PrintStreamLogHandler
-
 
-
getToken() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Authentication token for the broker, this can return null.
-
-
getTransport() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
 
-
getType() - Method in class org.iot.dsa.node.DSMetadata
-
-
The type for action parameters, can be used to override types in the responder api.
-
-
getUnit() - Method in class org.iot.dsa.node.DSMetadata
-
-
Value if defined, otherwise null.
-
-
getValue() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
Value of the object, should only be called if isValue() returns true.
-
-
getValue() - Method in interface org.iot.dsa.dslink.responder.InboundSetRequest
-
-
The value to set.
-
-
getValue() - Method in class org.iot.dsa.node.DSInfo
-
-
A convenience that casts getObject().
-
-
getValue() - Method in class org.iot.dsa.node.DSMap.Entry
-
 
-
getValue(String) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for (DSIValue) get(name).
-
-
getValueChild() - Method in class org.iot.dsa.node.DSValueNode
-
-
Subclasses must store the node value in a child value and provide the info for that child - here.
-
-
getValueResults() - Method in interface org.iot.dsa.node.action.ActionSpec
-
-
This is only called for the VALUES result type.
-
-
getValueResults() - Method in class org.iot.dsa.node.action.DSAction
-
 
-
getValues() - Method in interface org.iot.dsa.node.action.ActionValues
-
 
-
getValues() - Method in class org.iot.dsa.node.action.DSActionValues
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSBool
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSBytes
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSDouble
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSElement
-
-
The DSA value type mapping.
-
-
getValueType() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSFloat
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSInt
-
 
-
getValueType() - Method in interface org.iot.dsa.node.DSIValue
-
-
The DSA type mapping.
-
-
getValueType() - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSList
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSLong
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSMap
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSNull
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSStatus
-
-
String.
-
-
getValueType() - Method in class org.iot.dsa.node.DSString
-
 
-
getValueType() - Method in class org.iot.dsa.node.DSValueNode
-
 
-
getValueType() - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
getValueType() - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
getValueType() - Method in class org.iot.dsa.time.DSDateTime
-
-
String.
-
-
- - - -

H

-
-
hasChildren() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
True if getChildren() can be called.
-
-
hasChildren() - Method in class org.iot.dsa.node.DSInfo
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSBool
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSBytes
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSDouble
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSFloat
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSGroup
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSInfo
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSInt
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSLong
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSMap.Entry
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSMap
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSStatus
-
 
-
hashCode() - Method in class org.iot.dsa.node.DSString
-
 
-
hashCode() - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
hashCode() - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
hashCode() - Method in class org.iot.dsa.time.DSDateTime
-
 
-
hasNext() - Method in class org.iot.dsa.node.DSInfo
-
-
True if there is another info after this one.
-
-
hasParent() - Method in class org.iot.dsa.node.DSGroup
-
 
-
houseKeeping() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Subclass hook for activities such as rolling files and cleaning up old garbage.
-
-
houseKeeping() - Method in class org.iot.dsa.logging.FileLogHandler
-
 
-
- - - -

I

-
-
InboundInvokeRequest - Interface in org.iot.dsa.dslink.responder
-
-
See ActionInvocation for the real meat.
-
-
InboundListRequest - Interface in org.iot.dsa.dslink.responder
-
-
The details about an incoming list request passed to the responder.
-
-
InboundRequest - Interface in org.iot.dsa.dslink.responder
-
-
Common to all incoming requests.
-
-
InboundSetRequest - Interface in org.iot.dsa.dslink.responder
-
 
-
InboundSubscribeRequest - Interface in org.iot.dsa.dslink.responder
-
-
The details about an incoming subscribe request passed to the responder.
-
-
indexOf(DSElement) - Method in class org.iot.dsa.node.DSGroup
-
-
Scans the collection and returns the first index that equal the arg.
-
-
indexOf(String) - Method in class org.iot.dsa.node.DSMap
-
-
Index of the given key, or -1.
-
-
INFO - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
info - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
info() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
info(Object) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log an infrequent major lifecycle event.
-
-
info(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log an infrequent major lifecycle event.
-
-
INFO_TOPIC - Static variable in class org.iot.dsa.node.DSNode
-
 
-
init(DSLinkConfig) - Method in class org.iot.dsa.dslink.DSLink
-
-
Configures a link instance including creating the appropriate connection.
-
-
initCause(Throwable) - Method in exception org.iot.dsa.util.DSException
-
 
-
insert(int, DSList...) - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
Only use with open tables, insert the rows at the given index.
-
-
INSTANCE - Static variable in class org.iot.dsa.node.event.DSInfoTopic
-
-
The only instance of this topic.
-
-
INSTANCE - Static variable in class org.iot.dsa.node.event.DSValueTopic
-
-
The only instance of this topic.
-
-
invoke(String, DSMap, OutboundInvokeHandler) - Method in interface org.iot.dsa.dslink.DSIRequester
-
-
Submits an invoke request.
-
-
invoke(DSInfo, ActionInvocation) - Method in class org.iot.dsa.node.action.DSAction
-
-
Calls onInvoke on the proper node.
-
-
isAction() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
True if the object is an action.
-
-
isAction() - Method in class org.iot.dsa.node.DSInfo
-
 
-
isAdmin() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
Whether or not this object requires configuration permission to read/write.
-
-
isAdmin() - Method in class org.iot.dsa.node.DSInfo
-
 
-
isAutoClose() - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
True by default, whether or not to close the stream upon receiving the first result.
-
-
isBad() - Method in class org.iot.dsa.node.DSStatus
-
-
If any of the bad flags are set, or is null.
-
-
isBoolean() - Method in class org.iot.dsa.node.DSBool
-
 
-
isBoolean() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a boolean.
-
-
isBytes() - Method in class org.iot.dsa.node.DSBytes
-
 
-
isBytes(String) - Static method in class org.iot.dsa.node.DSBytes
-
-
True if the string starts with the DSA escape sequence for a base 64 encoded string.
-
-
isBytes() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a byte array.
-
-
isCancelled() - Method in class org.iot.dsa.DSRuntime.Timer
-
 
-
isClosed() - Method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
-
True if CLOSED_TABLE, VOID, or VALUES.
-
-
isConfig() - Method in enum org.iot.dsa.security.DSPermission
-
 
-
isConfigFault() - Method in class org.iot.dsa.node.DSStatus
-
-
True if the associate bit is set.
-
-
isConnected() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
True when a connection is established with the remote endpoint.
-
-
isDefaultInstance() - Method in class org.iot.dsa.node.DSNode
-
-
True if this is the default instance for the type.
-
-
isDefaultOnCopy() - Method in class org.iot.dsa.node.DSInfo
-
-
Whether or not the current value, or the default value is copied.
-
-
isDisabled() - Method in class org.iot.dsa.node.DSStatus
-
-
True if the associate bit is set.
-
-
isDouble() - Method in class org.iot.dsa.node.DSDouble
-
 
-
isDouble() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a double.
-
-
isDouble() - Method in class org.iot.dsa.node.DSFloat
-
 
-
isDouble() - Method in class org.iot.dsa.node.DSInt
-
 
-
isDouble() - Method in interface org.iot.dsa.node.DSINumber
-
-
Whether or not the object represents a double.
-
-
isDown() - Method in class org.iot.dsa.node.DSStatus
-
-
True if the associate bit is set.
-
-
isDynamic() - Method in class org.iot.dsa.node.DSInfo
-
-
Whether or not this info represents a declared default.
-
-
isEmpty() - Method in class org.iot.dsa.node.DSGroup
-
-
Returns true when childCount() == 0.
-
-
isEmpty() - Method in class org.iot.dsa.node.DSMetadata
-
 
-
isEqual(Object) - Method in class org.iot.dsa.node.action.DSAction
-
-
Defaults to the equals method.
-
-
isEqual(Object) - Method in class org.iot.dsa.node.DSElement
-
 
-
isEqual(Object) - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
isEqual(Object) - Method in class org.iot.dsa.node.DSFloat
-
 
-
isEqual(DSInfo) - Method in class org.iot.dsa.node.DSInfo
-
-
True if the flags and target object are equal (not identical if the target is a node).
-
-
isEqual(Object) - Method in class org.iot.dsa.node.DSInt
-
 
-
isEqual(Object) - Method in interface org.iot.dsa.node.DSIObject
-
-
Equals implementation that doesn't require hashCodes to equal, primarily intended - so for comparing nodes.
-
-
isEqual(Object) - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
isEqual(Object) - Method in class org.iot.dsa.node.DSNode
-
-
True if the argument is a node with the same children, although their order can be - different.
-
-
isEqual(Object) - Method in class org.iot.dsa.node.DSStatus
-
 
-
isEqual(Object) - Method in class org.iot.dsa.node.event.DSTopic
-
-
Only test instance equality.
-
-
isEqual(Object) - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
isEqual(Object) - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
isEqual(Object) - Method in class org.iot.dsa.time.DSDateTime
-
-
Defaults to the equals method.
-
-
isFault() - Method in class org.iot.dsa.node.DSStatus
-
-
True if the associate bit is set.
-
-
isFinished() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
True if cancelled or was a one time execution and that has finished.
-
-
isFloat() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a float.
-
-
isFloat() - Method in class org.iot.dsa.node.DSFloat
-
 
-
isFloat() - Method in class org.iot.dsa.node.DSInt
-
 
-
isFloat() - Method in interface org.iot.dsa.node.DSINumber
-
-
Whether or not the object represents a double.
-
-
isGood() - Method in class org.iot.dsa.node.DSStatus
-
-
If true, any associate object / value can be trusted.
-
-
isGreaterThan(DSPermission) - Method in enum org.iot.dsa.security.DSPermission
-
-
True if this level is higher than the given.
-
-
isGroup() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a list or map.
-
-
isGroup() - Method in class org.iot.dsa.node.DSGroup
-
 
-
isHidden() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
True if the object should ignored (not be exposed through the api).
-
-
isHidden() - Method in class org.iot.dsa.node.DSInfo
-
-
Whether or not an object is visible to clients.
-
-
isIdentical(DSInfo) - Method in class org.iot.dsa.node.DSInfo
-
-
True if the flags and target object are identical.
-
-
isIdentical(Object) - Method in class org.iot.dsa.node.DSNode
-
-
True if the argument is a node with the same children in the exact same order.
-
-
isInfinite() - Method in class org.iot.dsa.node.DSDouble
-
 
-
isInt() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents an int.
-
-
isInt() - Method in class org.iot.dsa.node.DSFloat
-
 
-
isInt() - Method in class org.iot.dsa.node.DSInt
-
 
-
isInt() - Method in interface org.iot.dsa.node.DSINumber
-
-
Whether or not the object represents an int.
-
-
isList() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a list.
-
-
isList() - Method in class org.iot.dsa.node.DSList
-
-
Returns true.
-
-
isList() - Method in enum org.iot.dsa.security.DSPermission
-
 
-
isLong() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a long.
-
-
isLong() - Method in class org.iot.dsa.node.DSFloat
-
 
-
isLong() - Method in class org.iot.dsa.node.DSInt
-
 
-
isLong() - Method in interface org.iot.dsa.node.DSINumber
-
-
Whether or not the object represents a long.
-
-
isLong() - Method in class org.iot.dsa.node.DSLong
-
 
-
isMap() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a amp.
-
-
isMap() - Method in class org.iot.dsa.node.DSMap
-
-
Returns true.
-
-
isNaN() - Method in class org.iot.dsa.node.DSDouble
-
 
-
isNode() - Method in class org.iot.dsa.node.DSInfo
-
-
Whether or not the object is a DSNode.
-
-
isNode(Object) - Static method in class org.iot.dsa.node.DSNode
-
-
Convenience for instanceof DSNode.
-
-
isNull() - Method in class org.iot.dsa.node.action.DSAction
-
-
False
-
-
isNull() - Method in class org.iot.dsa.node.DSBool
-
 
-
isNull() - Method in class org.iot.dsa.node.DSBytes
-
 
-
isNull() - Method in class org.iot.dsa.node.DSDouble
-
 
-
isNull() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents null.
-
-
isNull() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
isNull() - Method in class org.iot.dsa.node.DSFloat
-
 
-
isNull(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Whether or not the object at the given index is null.
-
-
isNull() - Method in class org.iot.dsa.node.DSInt
-
 
-
isNull() - Method in interface org.iot.dsa.node.DSIObject
-
 
-
isNull() - Method in interface org.iot.dsa.node.DSIValue
-
-
Values should have an instance representing null.
-
-
isNull() - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
isNull() - Method in class org.iot.dsa.node.DSList
-
-
Returns false.
-
-
isNull() - Method in class org.iot.dsa.node.DSLong
-
 
-
isNull() - Method in class org.iot.dsa.node.DSMap
-
-
Returns false.
-
-
isNull(String) - Method in class org.iot.dsa.node.DSMap
-
-
Returns true if the key isn't in the map, or it's value is null.
-
-
isNull() - Method in class org.iot.dsa.node.DSNode
-
-
Returns false.
-
-
isNull() - Method in class org.iot.dsa.node.DSNull
-
-
True
-
-
isNull() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isNull() - Method in class org.iot.dsa.node.event.DSTopic
-
-
False
-
-
isNull() - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
isNull() - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
isNull() - Method in class org.iot.dsa.time.DSDateTime
-
 
-
isNumber() - Method in class org.iot.dsa.node.DSDouble
-
 
-
isNumber() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a number.
-
-
isNumber() - Method in class org.iot.dsa.node.DSLong
-
 
-
isOk() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isOpen() - Method in interface org.iot.dsa.dslink.responder.InboundListRequest
-
-
Whether or not the list stream is still open.
-
-
isOpen() - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
Whether or not response is still open.
-
-
isOpen() - Method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
-
True if OPEN_TABLE or STREAM_TABLE
-
-
isOverride() - Method in class org.iot.dsa.node.DSStatus
-
-
True if the associate bit is set.
-
-
isRead() - Method in enum org.iot.dsa.security.DSPermission
-
 
-
isReadOnly() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
True if the object is a value and cannot be written.
-
-
isReadOnly() - Method in class org.iot.dsa.node.DSInfo
-
-
Whether or not an object can be written by a client.
-
-
isRemoteConfigFault() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRemoteDisabled() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRemoteDown() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRemoteFault() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRemoteOverride() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRemoteStale() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRemoteUnknown() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isRequester() - Method in class org.iot.dsa.dslink.DSMainNode
-
-
Override point, returns true by default.
-
-
isResponder() - Method in class org.iot.dsa.dslink.DSMainNode
-
-
Override point, returns true by default.
-
-
isRunning() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
True when the runnable is being actually being executed.
-
-
isRunning() - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for !isStopped().
-
-
isStable() - Method in class org.iot.dsa.node.DSNode
-
-
True after stable is called, children are stable before their parents.
-
-
isStale() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isStarted() - Method in class org.iot.dsa.node.DSNode
-
-
True after start is called, children are started before their parents.
-
-
isStopped() - Method in class org.iot.dsa.node.DSNode
-
-
True after stop is called, children are stopped before their parents.
-
-
isStream() - Method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
-
True if this is the STREAM_TABLE.
-
-
isStreamOpen() - Method in interface org.iot.dsa.dslink.requester.OutboundStream
-
-
Whether or not the request is open.
-
-
isString() - Method in class org.iot.dsa.node.DSElement
-
-
Whether or not the object represents a string.
-
-
isString() - Method in class org.iot.dsa.node.DSString
-
 
-
isSubscribed() - Method in class org.iot.dsa.node.DSNode
-
-
True if there are any subscribers.
-
-
isSubscribed(DSInfo, DSTopic) - Method in class org.iot.dsa.node.DSNode
-
-
True if there are any subscriptions with the matching child and topic.
-
-
isSubscribed(DSTopic) - Method in class org.iot.dsa.node.DSNode
-
-
True if there any subscriptions for the given topic.
-
-
isTransient() - Method in class org.iot.dsa.node.DSInfo
-
-
Whether or not an object is persistent.
-
-
isUnknown() - Method in class org.iot.dsa.node.DSStatus
-
 
-
isValid(DSElement) - Method in interface org.iot.dsa.security.DSIPassword
-
-
Returns true if the give element is valid according to the backing implementation.
-
-
isValid(DSElement) - Method in class org.iot.dsa.security.DSPasswordAes
-
-
Encrypts the string value of the given element and compares against the value stored in this - object.
-
-
isValid(String) - Method in class org.iot.dsa.security.DSPasswordAes
-
-
Encrypts the given string and compares against the value stored in this object.
-
-
isValid(DSElement) - Method in class org.iot.dsa.security.DSPasswordSha256
-
-
Hashes the string value of the given element and compares against the hash stored in this - object.
-
-
isValid(String) - Method in class org.iot.dsa.security.DSPasswordSha256
-
-
Hashes the given string and compares against the value stored in this object.
-
-
isValue() - Method in interface org.iot.dsa.dslink.responder.ApiObject
-
-
True if getValue() can be called.
-
-
isValue() - Method in class org.iot.dsa.node.DSInfo
-
 
-
isValues() - Method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
 
-
isVoid() - Method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
 
-
isWrite() - Method in enum org.iot.dsa.security.DSPermission
-
 
-
isZip() - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Whether or not this is zipping the output.
-
-
iterateNodes() - Method in class org.iot.dsa.node.DSNode
-
-
Returns an info iterator of child DSNodes.
-
-
iterateValues() - Method in class org.iot.dsa.node.DSNode
-
-
Returns an info iterator of child DSIValues.
-
-
iterator() - Method in class org.iot.dsa.node.DSList
-
-
Returns an iterator that does not implement remove.
-
-
iterator() - Method in class org.iot.dsa.node.DSNode
-
-
Returns an info iterator of all children.
-
-
- - - -

J

-
-
JsonAppender - Class in org.iot.dsa.io.json
-
-
Json implementation of DSWriter intended for Appendables such as StringBuilders.
-
-
JsonAppender() - Constructor for class org.iot.dsa.io.json.JsonAppender
-
-
Be sure to call one of the setOutput methods.
-
-
JsonAppender(Appendable) - Constructor for class org.iot.dsa.io.json.JsonAppender
-
-
Will write directly to the given appendable.
-
-
JsonAppender(File) - Constructor for class org.iot.dsa.io.json.JsonAppender
-
-
Creates an underlying FileWriter.
-
-
JsonAppender(File, String) - Constructor for class org.iot.dsa.io.json.JsonAppender
-
-
Will create a zip file using the zipFileName as file name inside the zip.
-
-
JsonAppender(OutputStream) - Constructor for class org.iot.dsa.io.json.JsonAppender
-
-
Creates an underlying OutputStreamWriter.
-
-
JsonAppender(OutputStream, String) - Constructor for class org.iot.dsa.io.json.JsonAppender
-
-
Will write a zip file to the given stream.
-
-
JsonConstants - Interface in org.iot.dsa.io.json
-
-
Useful constants.
-
-
JsonReader - Class in org.iot.dsa.io.json
-
-
Json implementation of DSReader.
-
-
JsonReader() - Constructor for class org.iot.dsa.io.json.JsonReader
-
 
-
JsonReader(CharSequence) - Constructor for class org.iot.dsa.io.json.JsonReader
-
 
-
JsonReader(File) - Constructor for class org.iot.dsa.io.json.JsonReader
-
 
-
JsonReader(InputStream, String) - Constructor for class org.iot.dsa.io.json.JsonReader
-
 
-
JsonReader(Reader) - Constructor for class org.iot.dsa.io.json.JsonReader
-
 
-
JsonWriter - Class in org.iot.dsa.io.json
-
-
Json implementation of DSWriter intended for OutputStreams and Writers.
-
-
JsonWriter() - Constructor for class org.iot.dsa.io.json.JsonWriter
-
-
Be sure to call one of the setOutput methods.
-
-
JsonWriter(File) - Constructor for class org.iot.dsa.io.json.JsonWriter
-
-
Creates an underlying FileWriter.
-
-
JsonWriter(File, String) - Constructor for class org.iot.dsa.io.json.JsonWriter
-
-
Will create a zip file using the zipFileName as file name inside the zip.
-
-
JsonWriter(OutputStream) - Constructor for class org.iot.dsa.io.json.JsonWriter
-
-
Creates an underlying OutputStreamWriter.
-
-
JsonWriter(OutputStream, String) - Constructor for class org.iot.dsa.io.json.JsonWriter
-
-
Will write a zip file to the given stream.
-
-
JsonWriter(Writer) - Constructor for class org.iot.dsa.io.json.JsonWriter
-
 
-
- - - -

K

-
-
key(CharSequence) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
key(CharSequence) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a key in the current map.
-
-
keys - Variable in class org.iot.dsa.node.DSMap
-
-
For preserving order.
-
-
- - - -

L

-
-
last() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
last() - Method in interface org.iot.dsa.io.DSIReader
-
-
The last value returned from next().
-
-
last() - Method in class org.iot.dsa.node.DSGroup
-
-
Returns the item at the highest index.
-
-
lastIndexOf(DSElement) - Method in class org.iot.dsa.node.DSGroup
-
-
Scans the collection and returns the first index that equal the arg.
-
-
lastRun() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
The lastRun run or -1 if it hasn't run yet.
-
-
length() - Method in class org.iot.dsa.io.AbstractWriter
-
-
Returns 0 by default.
-
-
length() - Method in interface org.iot.dsa.io.DSIWriter
-
-
If the writer is buffering output, this returns the size of that buffer.
-
-
length() - Method in class org.iot.dsa.node.DSBytes
-
-
The number of bytes in the array.
-
-
list(String, OutboundListHandler) - Method in interface org.iot.dsa.dslink.DSIRequester
-
-
Submits a list request.
-
-
list - Variable in class org.iot.dsa.node.DSList
-
 
-
load(DSLinkConfig) - Static method in class org.iot.dsa.dslink.DSLink
-
-
Creates a link by first testing for an existing serialized database.
-
-
- - - -

M

-
-
main(String[]) - Static method in class org.iot.dsa.dslink.DSLink
-
-
This is a convenience for DSLink.load(new DSLinkConfig(args)).run() and can be used as the - the main class for any link.
-
-
make(boolean) - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of the primitive.
-
-
make(byte[]) - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of the primitive.
-
-
make(double) - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of the primitive.
-
-
make(int) - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of the primitive.
-
-
make(long) - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of the primitive.
-
-
make(String) - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of the primitive.
-
-
makeBackup() - Method in class org.iot.dsa.logging.FileLogHandler
-
-
Only public for testing, do not call.
-
-
makeException(ErrorType, String) - Static method in enum org.iot.dsa.dslink.requester.ErrorType
-
 
-
makeMessage(Throwable) - Static method in exception org.iot.dsa.util.DSException
-
-
Attempts come up with the best description of the argument.
-
-
makeNull() - Static method in class org.iot.dsa.node.DSElement
-
-
Creates an DSIObject representation of null.
-
-
makeRuntime(Throwable) - Static method in exception org.iot.dsa.util.DSException
-
-
If the given exception is already a runtime exception, it is cast and returned, - otherwise it will be returned wrapped by an instance of this class.
-
-
map - Variable in class org.iot.dsa.node.DSMap
-
 
-
MAX_VALUE - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
millis() - Method in enum org.iot.dsa.time.DSInterval
-
-
The approximate number of ms in the interval.
-
-
MILLIS_DAY - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_FIFTEEN_MINUTES - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_FIFTEEN_SECONDS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_FIVE_MINUTES - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_FIVE_SECONDS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_FOUR_HOURS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_HOUR - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_MINUTE - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_MONTH - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_QUARTER - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_SECOND - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_SIX_HOURS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_TEN_MINUTES - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_TEN_SECONDS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_THIRTY_MINUTES - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_THIRTY_SECONDS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_THREE_HOURS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_TWELVE_HOURS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_TWENTY_MINUTES - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_TWO_HOURS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_WEEK - Static variable in class org.iot.dsa.time.DSTime
-
 
-
MILLIS_YEAR - Static variable in class org.iot.dsa.time.DSTime
-
 
-
millisToNanos(long) - Static method in class org.iot.dsa.time.DSTime
-
 
-
MIN_VALUE - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
- - - -

N

-
-
NAME - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
NANOS_IN_MS - Static variable in class org.iot.dsa.time.DSTime
-
 
-
NANOS_IN_SEC - Static variable in class org.iot.dsa.time.DSTime
-
 
-
nanosToMillis(long) - Static method in class org.iot.dsa.time.DSTime
-
 
-
newKeyPair() - Static method in class org.iot.dsa.security.DSKeys
-
-
Creates a key pair for the predefined elliptic curve secp256r1.
-
-
newSignature() - Static method in class org.iot.dsa.security.DSKeys
-
-
Returns a SHA256withECDSA signature.
-
-
newSigner() - Method in class org.iot.dsa.security.DSKeys
-
-
Creates a signer for this private key.
-
-
newVerifier() - Method in class org.iot.dsa.security.DSKeys
-
-
Creates a verifier for this public key.
-
-
next() - Method in class org.iot.dsa.io.AbstractReader
-
-
Subclasses must override this, read the next item from the stream, then call one of the - setXxx methods.
-
-
next() - Method in interface org.iot.dsa.io.DSIReader
-
-
Advances the reader to the next item and returns the token representing it's current state.
-
-
next() - Method in class org.iot.dsa.io.json.JsonReader
-
 
-
next() - Method in class org.iot.dsa.node.DSInfo
-
-
The next info in the parent node.
-
-
next(long) - Method in enum org.iot.dsa.time.DSInterval
-
-
Returns the nextRun interval for the previously aligned timestamp.
-
-
nextAction() - Method in class org.iot.dsa.node.DSInfo
-
-
The next DSInfo in the parent that is an action, or null.
-
-
nextNode() - Method in class org.iot.dsa.node.DSInfo
-
-
The next DSInfo in the parent that is a node, or null.
-
-
nextRun() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
The next scheduled time to run.
-
-
nextValue() - Method in class org.iot.dsa.node.DSInfo
-
-
The next DSInfo in the parent that is a value, or null.
-
-
NodeDecoder - Class in org.iot.dsa.io
-
-
Decodes a node (tree) that was encoded with NodeEncoder.
-
-
NodeEncoder - Class in org.iot.dsa.io
-
-
Encodes a node tree using a compact JSON schema.
-
-
NULL - Static variable in class org.iot.dsa.node.DSBool
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSBytes
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSDouble
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSFlexEnum
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSFloat
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSInt
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSJavaEnum
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSLong
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSNull
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
NULL - Static variable in class org.iot.dsa.node.DSString
-
 
-
NULL - Static variable in class org.iot.dsa.security.DSPasswordAes
-
 
-
NULL - Static variable in class org.iot.dsa.security.DSPasswordSha256
-
 
-
NULL - Static variable in class org.iot.dsa.time.DSDateTime
-
 
-
- - - -

O

-
-
off - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
OK - Static variable in class org.iot.dsa.node.DSStatus
-
-
Good, no other status applies.
-
-
ok - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
OK_OVERRIDE - Static variable in class org.iot.dsa.node.DSStatus
-
-
Good, the value is overridden within DSA.
-
-
OK_OVERRIDE_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
OK_REMOTE_OVERRIDE - Static variable in class org.iot.dsa.node.DSStatus
-
-
Good, the value is overridden outside of DSA.
-
-
OK_REMOTE_OVERRIDE_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
OK_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
okOverride - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
okRemoteOverride - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
onChildAdded(DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Called when the given child is added and in the stable state.
-
-
onChildChanged(DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Called when the given child is changed and in the stable state.
-
-
onChildChanged(DSInfo) - Method in class org.iot.dsa.node.DSValueNode
-
-
This fires the NODE_CHANGED topic when the value child changes.
-
-
onChildRemoved(DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Called when the given child is removed and in the stable state.
-
-
onClose() - Method in interface org.iot.dsa.dslink.requester.OutboundRequestHandler
-
-
Callback for when the request stream is closed, no matter how or by who.
-
-
onClose() - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Causes getResult to return.
-
-
onClose() - Method in class org.iot.dsa.dslink.requester.SimpleRequestHandler
-
-
Does nothing by default.
-
-
onClose() - Method in interface org.iot.dsa.dslink.responder.OutboundListResponse
-
-
Will be called no matter how the stream is closed.
-
-
onClose(Integer) - Method in interface org.iot.dsa.dslink.responder.SubscriptionCloseHandler
-
-
Will be called no matter how the subscription is terminated.
-
-
onClose() - Method in interface org.iot.dsa.node.action.ActionResult
-
-
Always called, whether or not the result is a stream, and no matter who closes it.
-
-
onClose() - Method in class org.iot.dsa.node.action.DSActionValues
-
-
Does nothing.
-
-
onColumns(DSList) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
Called whenever columns are received.
-
-
onColumns(DSList) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Does nothing.
-
-
onConnect(DSLinkConnection) - Method in interface org.iot.dsa.dslink.DSLinkConnection.Listener
-
-
Called asynchronously after the connection with the endpoint is opened.
-
-
onConnect() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Called after onInitialize and before onRun.
-
-
onDisconnect(DSLinkConnection) - Method in interface org.iot.dsa.dslink.DSLinkConnection.Listener
-
-
Called synchronously after the connection with the endpoint is closed.
-<<<<<<< HEAD -
-
onDisconnect() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Called when this network connection has been closed.
-
-======= - -
onDisconnect() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Called when this network connection has been closed.
-
->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 -
onError(ErrorType, String) - Method in interface org.iot.dsa.dslink.requester.OutboundRequestHandler
-
-
Callback for when an error is received.
-
-
onError(ErrorType, String) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Will create an exception to be thrown by getResult.
-
-
onError(ErrorType, String) - Method in class org.iot.dsa.dslink.requester.SimpleRequestHandler
-
-
Does nothing by default.
-
-
onEvent(DSTopic, DSIEvent, DSNode, DSInfo, Object...) - Method in interface org.iot.dsa.node.event.DSISubscriber
-
-
Subscription callback.
-
-
onInfoChanged(DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Called when the given info is modified and in the stable state.
-
-
onInit(String, DSMap, OutboundStream) - Method in class org.iot.dsa.dslink.requester.AbstractInvokeHandler
-
-
Sets the fields so they can be access via the corresponding getters.
-
-
onInit(String, OutboundStream) - Method in class org.iot.dsa.dslink.requester.AbstractListHandler
-
-
Sets the fields so they can be accessed with the corresponding getters.
-
-
onInit(String, int, OutboundStream) - Method in class org.iot.dsa.dslink.requester.AbstractSubscribeHandler
-
-
Sets the fields so they can be accessed via the corresponding getters.
-
-
onInit(String, DSMap, OutboundStream) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
Called by the requester before returning from the invoke method.
-
-
onInit(String, OutboundStream) - Method in interface org.iot.dsa.dslink.requester.OutboundListHandler
-
-
Called by the requester before returning from the list method.
-
-
onInit(String, int, OutboundStream) - Method in interface org.iot.dsa.dslink.requester.OutboundSubscribeHandler
-
-
Called by the requester before returning from the subscribe method.
-
-
onInitialize() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Always called before onConnect.
-
-
onInitialized() - Method in interface org.iot.dsa.dslink.requester.OutboundListHandler
-
-
Called once the initial state of the target has been transmitted.
-
-
onInsert(int, DSList) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
Called when the given rows should be inserted at the given index.
-
-
onInsert(int, DSList) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Will result in an error since tables and streams are not supported.
-
-
onInvoke(InboundInvokeRequest) - Method in interface org.iot.dsa.dslink.DSIResponder
-
-
The implementation should quickly create an object for responding to the request, but do no - processing of it on the calling thread.
-
-
onInvoke(DSInfo, ActionInvocation) - Method in class org.iot.dsa.dslink.DSSysNode
-
 
-
onInvoke(DSInfo, ActionInvocation) - Method in class org.iot.dsa.node.DSNode
-
-
Override point, called by the default implementation of DSAction.invoke.
-
-
onList(InboundListRequest) - Method in interface org.iot.dsa.dslink.DSIResponder
-
-
The implementation should quickly create an object for responding to the request, but do no - processing of it on the calling thread.
-
-
onMode(OutboundInvokeHandler.Mode) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
Called whenever a mode is received.
-
-
onMode(OutboundInvokeHandler.Mode) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Does nothing.
-
-
onRemove(String) - Method in interface org.iot.dsa.dslink.requester.OutboundListHandler
-
-
Only called after onOpen(), indicates something about the target of the request has been - removed.
-
-
onReplace(int, int, DSList) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
The rows starting and ending with the given indexes should be removed and the given rows - inserted at the start index.
-
-
onReplace(int, int, DSList) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Will result in an error since tables and streams are not supported.
-
-
onRun() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
The long term management of the connection (reading and writing).
-
-
onSet(InboundSetRequest) - Method in interface org.iot.dsa.dslink.DSIResponder
-
-
The implementation should do no processing of it on the calling thread.
-
-
onSet(DSInfo, DSIValue) - Method in class org.iot.dsa.node.DSNode
-
-
Override point, called when a value being set.
-
-
onSet(DSIValue) - Method in class org.iot.dsa.node.DSNode
-
-
Override point, called only when a DSNode subclass implements DSIValue is being set.
-
-
onSet(DSIValue) - Method in class org.iot.dsa.node.DSValueNode
-
 
-
onStable() - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Starts the connection.
-
-
onStable() - Method in class org.iot.dsa.node.DSNode
-
-
Called once this node is stable, but before stable is called on children.
-
-
onStarted() - Method in class org.iot.dsa.node.DSNode
-
-
Called once this node and its entire subtree is started.
-
-
onStopped() - Method in class org.iot.dsa.dslink.DSLink
-
 
-
onStopped() - Method in class org.iot.dsa.node.DSNode
-
-
Called once this node and its entire subtree is stopped.
-
-
onSubscribe(InboundSubscribeRequest) - Method in interface org.iot.dsa.dslink.DSIResponder
-
-
The implementation should quickly create an object for responding to the request, but do no - processing of it on the calling thread.
-
-
onSubscribe(DSTopic, DSInfo, DSISubscriber) - Method in class org.iot.dsa.node.DSNode
-
-
Called for every subscription.
-
-
onSubscribed() - Method in class org.iot.dsa.node.DSNode
-
-
Called when this node transitions from having no subscriptions to having a subscription of - any kind.
-
-
onSubscribed(DSTopic, DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Called when the child and topic pair transitions from having no subscriptions to have a - subscription.
-
-
onTableMeta(DSMap) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
Called whenever metadata for the entire table is received.
-
-
onTableMeta(DSMap) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
 
-
onUnsubscribe(DSTopic, DSInfo, DSISubscriber) - Method in class org.iot.dsa.node.DSNode
-
-
Called for every unsubscribe.
-
-
onUnsubscribed() - Method in class org.iot.dsa.node.DSNode
-
-
Called when this node transitions to having no subscriptions of any kind.
-
-
onUnsubscribed(DSTopic, DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Called when the child and topic pair transitions to having no subscriptions.
-
-
onUnsubscribed(DSTopic, DSNode, DSInfo) - Method in interface org.iot.dsa.node.event.DSISubscriber
-
-
Called no matter how the unsubscribe happens, whether explicitly or if the node - unsubscribes itself.
-
-
onUpdate(DSList) - Method in interface org.iot.dsa.dslink.requester.OutboundInvokeHandler
-
-
Called for every row.
-
-
onUpdate(String, DSElement) - Method in interface org.iot.dsa.dslink.requester.OutboundListHandler
-
-
Called to provide a value for node metadata, attribute or child.
-
-
onUpdate(DSDateTime, DSElement, DSStatus) - Method in interface org.iot.dsa.dslink.requester.OutboundSubscribeHandler
-
-
Subscription update mechanism.
-
-
onUpdate(DSList) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Captures the result and if auto-close is true, closes the stream.
-
-
org.iot.dsa - package org.iot.dsa
-
-
Use the DSRuntime thread pool and timers.
-
-
org.iot.dsa.dslink - package org.iot.dsa.dslink
-
-
DSLink is the main entry point for an application.
-
-
org.iot.dsa.dslink.requester - package org.iot.dsa.dslink.requester
-
-
API for implementing requesters without having to modeling everything in the node tree.
-
-
org.iot.dsa.dslink.responder - package org.iot.dsa.dslink.responder
-
-
API for implementing responders without having modeling everything in the node tree.
-
-
org.iot.dsa.io - package org.iot.dsa.io
-
-
Node serialization and streaming abstraction for JSON and MsgPack.
-
-
org.iot.dsa.io.json - package org.iot.dsa.io.json
-
 
-
org.iot.dsa.logging - package org.iot.dsa.logging
-
-
Async handler for Java Util Logging that also manages log backups.
-
-
org.iot.dsa.node - package org.iot.dsa.node
-
-
Persistent data model used to build the node tree of a link.
-
-
org.iot.dsa.node.action - package org.iot.dsa.node.action
-
 
-
org.iot.dsa.node.event - package org.iot.dsa.node.event
-
 
-
org.iot.dsa.security - package org.iot.dsa.security
-
 
-
org.iot.dsa.time - package org.iot.dsa.time
-
 
-
org.iot.dsa.util - package org.iot.dsa.util
-
 
-
OutboundInvokeHandler - Interface in org.iot.dsa.dslink.requester
-
-
Callback mechanism passed to the invoke method on DSIRequester.
-
-
OutboundInvokeHandler.Mode - Enum in org.iot.dsa.dslink.requester
-
 
-
OutboundListHandler - Interface in org.iot.dsa.dslink.requester
-
-
Callback mechanism passed to the list method on DSIRequester.
-
-
OutboundListResponse - Interface in org.iot.dsa.dslink.responder
-
-
The responder is responsible for returning this upon notification of a list request.
-
-
OutboundRequestHandler - Interface in org.iot.dsa.dslink.requester
-
-
Callbacks common to all outbound requests.
-
-
OutboundStream - Interface in org.iot.dsa.dslink.requester
-
-
Mechanism for the requester to close outbound requests.
-
-
OutboundSubscribeHandler - Interface in org.iot.dsa.dslink.requester
-
-
Callback mechanism passed to the subscribe method in the requester.
-
-
- - - -

P

-
-
parse(String[]) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Parses command line args to set the internal state of this object.
-
-
PLACEHOLDER - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
prepareParameter(DSInfo, DSMap) - Method in class org.iot.dsa.node.action.DSAction
-
-
Override point, called for each parameter as it is being sent to the requester.
-
-
prettyPrint - Variable in class org.iot.dsa.io.AbstractWriter
-
-
Subclasses can use this if applicable.
-
-
printStackTrace() - Method in exception org.iot.dsa.util.DSException
-
 
-
printStackTrace(PrintStream) - Method in exception org.iot.dsa.util.DSException
-
 
-
printStackTrace(PrintWriter) - Method in exception org.iot.dsa.util.DSException
-
 
-
PrintStreamLogHandler - Class in org.iot.dsa.logging
-
-
Async logging handler for writing to streams such as System.out.
-
-
PrintStreamLogHandler(String, PrintStream) - Constructor for class org.iot.dsa.logging.PrintStreamLogHandler
-
 
-
publish(LogRecord) - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Enqueues the record for the write thread.
-
-
put(int, DSElement) - Method in class org.iot.dsa.node.DSList
-
-
Replaces a value and returns this.
-
-
put(int, boolean) - Method in class org.iot.dsa.node.DSList
-
-
Primitive setter, returns this.
-
-
put(int, double) - Method in class org.iot.dsa.node.DSList
-
-
Primitive setter, returns this.
-
-
put(int, int) - Method in class org.iot.dsa.node.DSList
-
-
Primitive setter, returns this.
-
-
put(int, long) - Method in class org.iot.dsa.node.DSList
-
-
Primitive setter, returns this.
-
-
put(int, String) - Method in class org.iot.dsa.node.DSList
-
-
Primitive setter, returns this.
-
-
put(String, DSElement) - Method in class org.iot.dsa.node.DSMap
-
-
Adds or replaces the value for the given key and returns this.
-
-
put(String, boolean) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive setter, returns this.
-
-
put(String, double) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive setter, returns this.
-
-
put(String, int) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive setter, returns this.
-
-
put(String, long) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive setter, returns this.
-
-
put(String, String) - Method in class org.iot.dsa.node.DSMap
-
-
Primitive setter, returns this.
-
-
put(String, Throwable) - Method in class org.iot.dsa.node.DSMap
-
-
Puts a String representing the stack trace into the map.
-
-
put(String, DSIObject) - Method in class org.iot.dsa.node.DSNode
-
-
Adds or replaces the named child.
-
-
put(String, boolean) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for put(String, DSIObject)
-
-
put(String, double) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for put(String, DSIObject)
-
-
put(String, float) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for put(String, DSIObject)
-
-
put(String, int) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for put(String, DSIObject)
-
-
put(String, long) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for put(String, DSIObject)
-
-
put(String, String) - Method in class org.iot.dsa.node.DSNode
-
-
A convenience for put(String, DSIObject)
-
-
put(DSInfo, DSIObject) - Method in class org.iot.dsa.node.DSNode
-
-
Replaces the child.
-
-
putAll(DSMap) - Method in class org.iot.dsa.node.DSMap
-
-
Adds / overwrites entries in this map with those from the given.
-
-
putList(String) - Method in class org.iot.dsa.node.DSMap
-
-
Puts a new list for given key and returns it.
-
-
putMap(String) - Method in class org.iot.dsa.node.DSMap
-
-
Puts a new map for given key and returns it.
-
-
putNull(String) - Method in class org.iot.dsa.node.DSMap
-
-
Puts a null value for given key and returns this.
-
-
- - - -

R

-
-
readDouble(byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a byte array.
-
-
readDouble(InputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a stream.
-
-
readFloat(byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a byte array.
-
-
readFloat(InputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive a stream
-
-
readInt(byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a byte array.
-
-
readInt(InputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a stream.
-
-
readLong(byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a byte array.
-
-
readLong(InputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a stream.
-
-
readShort(byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a byte array.
-
-
readShort(InputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Reads the primitive from a stream.
-
-
recycle(Calendar) - Static method in class org.iot.dsa.time.DSTime
-
-
Return a calendar instance for reuse.
-
-
registerDecoder(Class, DSIValue) - Static method in class org.iot.dsa.node.DSRegistry
-
-
DSIValues must provide an instance for decoding.
-
-
REMOTE_CONFIG_FAULT - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, a configuration error is being reported by the foreign system.
-
-
REMOTE_CONFIG_FAULT_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
REMOTE_DISABLED - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, the foreign system is reporting the object is disabled.
-
-
REMOTE_DISABLED_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
REMOTE_DOWN - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, down communications are being reported by the foreign system.
-
-
REMOTE_DOWN_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
REMOTE_FAULT - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, an operational error is being reported by the foreign system.
-
-
REMOTE_FAULT_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
REMOTE_STALE - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, a stale value is being reported by the foreign system.
-
-
REMOTE_STALE_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
REMOTE_UNKNOWN - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, the foreign system is reporting the status is unknown.
-
-
REMOTE_UNKNOWN_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remoteConfigFault - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remoteDisabled - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remoteDown - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remoteFault - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remoteStale - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remoteUnknown - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
remove(String, OutboundRequestHandler) - Method in interface org.iot.dsa.dslink.DSIRequester
-
-
Submits request to remove an attribute.
-
-
remove(int) - Method in class org.iot.dsa.node.DSGroup
-
-
Removes the value at the given index and returns it.
-
-
remove(int) - Method in class org.iot.dsa.node.DSList
-
 
-
remove(int) - Method in class org.iot.dsa.node.DSMap
-
 
-
remove(String) - Method in class org.iot.dsa.node.DSMap
-
-
Removes the key-value pair and returns the removed value.
-
-
remove(DSInfo) - Method in class org.iot.dsa.node.DSNode
-
-
Removes the child.
-
-
remove(String) - Method in class org.iot.dsa.node.DSNode
-
-
Remove the named child if it is contained.
-
-
removeFirst() - Method in class org.iot.dsa.node.DSGroup
-
-
Remove and return the item at index 0.
-
-
removeLast() - Method in class org.iot.dsa.node.DSGroup
-
-
Remove and return the item at the highest index.
-
-
removeListener(DSLinkConnection.Listener) - Method in class org.iot.dsa.dslink.DSLinkConnection
-
-
Removes a listener for connection events.
-
-
replace(int, int, DSList...) - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
Only use with open tables, deletes len rows starting at the given index, then inserts the - given rows in their place.
-
-
reset() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
reset() - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
reset() - Method in interface org.iot.dsa.io.DSIReader
-
-
Sets last() == ROOT.
-
-
reset() - Method in interface org.iot.dsa.io.DSIWriter
-
-
Clears the state of the writer.
-
-
reset() - Method in class org.iot.dsa.io.json.JsonAppender
-
 
-
reset() - Method in class org.iot.dsa.io.json.JsonReader
-
 
-
reset() - Method in class org.iot.dsa.io.json.JsonWriter
-
 
-
reset() - Method in class org.iot.dsa.security.DSKeys.Signer
-
-
Call to begin a new signature.
-
-
reset() - Method in class org.iot.dsa.security.DSKeys.Verifier
-
-
Call to begin a new signature.
-
-
restore(DSElement) - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
restore(DSElement) - Method in interface org.iot.dsa.node.DSIStorable
-
-
Deserialize a value from the configuration database, these will be values returned from the - store() method.
-
-
restore(DSElement) - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
restore(DSElement) - Method in class org.iot.dsa.node.DSStatus
-
 
-
restore(File) - Static method in class org.iot.dsa.security.DSKeys
-
-
Decodes a key pair that was encoded by the store method.
-
-
restore(InputStream) - Static method in class org.iot.dsa.security.DSKeys
-
-
Decodes a key pair that was encoded by the store method, does not onClose the given stream.
-
-
restore(DSElement) - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
restore(DSElement) - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
run() - Method in class org.iot.dsa.dslink.DSLink
-
-
Calls starts, waits the stableDelay, then calls stable.
-
-
run(Runnable) - Static method in class org.iot.dsa.DSRuntime
-
-
Run as soon as possible on the application's thread pool and run only once.
-
-
run(Runnable, long, long) - Static method in class org.iot.dsa.DSRuntime
-
-
Run periodically starting at the given time and repeat at the given millisecond interval.
-
-
run() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
Do not call.
-
-
runAt(Runnable, long) - Static method in class org.iot.dsa.DSRuntime
-
-
Run once at the given time.
-
-
runCount() - Method in class org.iot.dsa.DSRuntime.Timer
-
-
The number of completed runs.
-
-
runDelayed(Runnable, long) - Static method in class org.iot.dsa.DSRuntime
-
-
Run once after the given delay.
-
-
- - - -

S

-
-
save() - Method in class org.iot.dsa.dslink.DSLink
-
-
Serializes the configuration database.
-
-
send(DSList) - Method in interface org.iot.dsa.node.action.ActionInvocation
-
-
Only use with stream and open tables.
-
-
set(String, DSIValue, OutboundRequestHandler) - Method in interface org.iot.dsa.dslink.DSIRequester
-
-
Submits a set request.
-
-
set(String, DSElement) - Method in class org.iot.dsa.node.DSMetadata
-
-
Set arbitrary keys.
-
-
setAdmin(boolean) - Method in class org.iot.dsa.node.DSInfo
-
 
-
setAutoClose(boolean) - Method in class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
-
Whether or not to auto close the stream on the first update.
-
-
setBackupThreshold(int) - Method in class org.iot.dsa.logging.FileLogHandler
-
-
The file size threshold after which a logging file will be backed up and cleared.
-
-
setBeginList() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setBeginMap() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setBit(int, int, boolean) - Static method in class org.iot.dsa.util.DSUtil
-
-
Set or unset a bit at the given index.
-
-
setBooleanRange(DSList) - Method in class org.iot.dsa.node.DSMetadata
-
-
The list must be size 2 and the entries must not be null.
-
-
setBooleanRange(String, String) - Method in class org.iot.dsa.node.DSMetadata
-
-
The parameters can be null, which will result in the default text (false/true).
-
-
setBrokerUri(String) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
 
-
setConfig(String, boolean) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Modifies the in-memory representation of dslink.json, but it will not be saved back to disk.
-
-
setConfig(String, double) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Modifies the in-memory representation of dslink.json, but it will not be saved back to disk.
-
-
setConfig(String, int) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Modifies the in-memory representation of dslink.json, but it will not be saved back to disk.
-
-
setConfig(String, long) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Modifies the in-memory representation of dslink.json, but it will not be saved back to disk.
-
-
setConfig(String, String) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Modifies the in-memory representation of dslink.json, but it will not be saved back to disk.
-
-
setDecimalPlaces(DSLong) - Method in class org.iot.dsa.node.DSMetadata
-
 
-
setDefault(DSIValue) - Method in class org.iot.dsa.node.DSMetadata
-
-
Sets the default value only, does not set type information.
-
-
setDefaultLevel(Level) - Static method in class org.iot.dsa.logging.DSLogging
-
 
-
setDescription(String) - Method in class org.iot.dsa.node.DSMetadata
-
 
-
setDetail(String) - Method in exception org.iot.dsa.dslink.DSRequestException
-
-
Overrides the default detail which is the stack trace of this exception.
-
-
setDetail(Throwable) - Method in exception org.iot.dsa.dslink.DSRequestException
-
-
Overrides the default detail which is the stack trace of this exception.
-
-
setDisplayName(String) - Method in class org.iot.dsa.node.DSMetadata
-
 
-
setDslinkJson(DSMap) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Directly set the map without using file io.
-
-
setDslinkJson(File) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Sets the link map by file path.
-
-
setEditor(String) - Method in class org.iot.dsa.node.DSMetadata
-
-
See the EDITOR_ constants.
-
-
setEndInput() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setEndList() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setEndMap() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setEnumRange(DSList) - Method in class org.iot.dsa.node.DSMetadata
-
-
List of string values for an enum or string.
-
-
setEnumRange(String...) - Method in class org.iot.dsa.node.DSMetadata
-
-
List of string values for an enum or string.
-
-
setHidden(boolean) - Method in class org.iot.dsa.node.DSInfo
-
 
-
setInput(CharSequence) - Method in class org.iot.dsa.io.json.JsonReader
-
-
Sets the input source, resets to ROOT, and returns this.
-
-
setInput(File) - Method in class org.iot.dsa.io.json.JsonReader
-
-
Sets the input source, resets to ROOT, and returns this.
-
-
setInput(InputStream, String) - Method in class org.iot.dsa.io.json.JsonReader
-
-
Sets the input source, resets to ROOT, and returns this.
-
-
setInput(Reader) - Method in class org.iot.dsa.io.json.JsonReader
-
-
Sets the input source, resets to ROOT, and returns this.
-
-
setKeys(DSKeys) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Directly set the keys without using file io.
-
-
setKeys(File) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Sets the link keys by file path.
-
-
setLinkName(String) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Overrides dslink.json.
-
-
setLogLevel(String) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Should be one of the following (case insensitive): all, finest, finer, fine, config, info, - warning, severe, off.
-
-
setLogLevel(Level) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Overrides dslink.json.
-
-
setMainType(Class) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
The type of the root node.
-
-
setMap(DSMap) - Method in class org.iot.dsa.node.DSMetadata
-
-
Change the underlying map so the metadata instance can be reused.
-
-
setMaxBackups(int) - Method in class org.iot.dsa.logging.FileLogHandler
-
-
The default is 10.
-
-
setMaxQueueSize(int) - Method in class org.iot.dsa.logging.AsyncLogHandler
-
 
-
setMaxValue(DSElement) - Method in class org.iot.dsa.node.DSMetadata
-
-
The arg should be a number.
-
-
setMinValue(DSElement) - Method in class org.iot.dsa.node.DSMetadata
-
-
The arg should be a number.
-
-
setName(String) - Method in class org.iot.dsa.node.DSMetadata
-
 
-
setNextValue(boolean) - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setNextValue(byte[]) - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setNextValue(double) - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setNextValue(long) - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setNextValue(String) - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setNextValueNull() - Method in class org.iot.dsa.io.AbstractReader
-
 
-
setNodes(DSMainNode) - Method in class org.iot.dsa.dslink.DSLink
-
 
-
setNodesFile(File) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Overrides dslink.json.
-
-
setOut(PrintStream) - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Sets the sink for formatted messages.
-
-
setOutput(Appendable) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Sets the sink, resets the state and returns this.
-
-
setOutput(File) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Sets the sink, resets the state and returns this.
-
-
setOutput(File, String) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Will create a zip file using the zipFileName as file name inside the zip.
-
-
setOutput(OutputStream) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Sets the sink, resets the state and returns this.
-
-
setOutput(OutputStream, String) - Method in class org.iot.dsa.io.json.JsonAppender
-
-
Will write a zip file to the given stream.
-
-
setOutput(File) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Sets the sink, resets the state and returns this.
-
-
setOutput(File, String) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Will create a zip file using the zipFileName as file name inside the zip.
-
-
setOutput(OutputStream) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Sets the sink, resets the state and returns this.
-
-
setOutput(OutputStream, String) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Will write a zip file to the given stream.
-
-
setOutput(Writer) - Method in class org.iot.dsa.io.json.JsonWriter
-
-
Sets the sink, resets the state and returns this.
-
-
setPlaceHolder(String) - Method in class org.iot.dsa.node.DSMetadata
-
-
Place holder text for text fields.
-
-
setPrettyPrint(boolean) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
setReadOnly(boolean) - Method in class org.iot.dsa.node.DSInfo
-
 
-
setResultType(ActionSpec.ResultType) - Method in class org.iot.dsa.node.action.DSAction
-
-
Returns this, it is not necessary to set the result to void.
-
-
setSaveEnabled(boolean) - Method in class org.iot.dsa.dslink.DSLink
-
-
This is a transient option intended for unit tests.
-
-
setSkipMissedIntervals(boolean) - Method in class org.iot.dsa.DSRuntime.Timer
-
-
The default is true, set this to false if all intervals should be run, even if they run - later than scheduled.
-
-
setToken(String) - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Overrides dslink.json.
-
-
setTransient(boolean) - Method in class org.iot.dsa.node.DSInfo
-
 
-
setType(DSIValue) - Method in class org.iot.dsa.node.DSMetadata
-
-
Sets the type and if the given is an enum, sets the enum range as well.
-
-
setType(DSValueType) - Method in class org.iot.dsa.node.DSMetadata
-
-
The type for action parameters, can be used to override types in the responder api.
-
-
setUnit(String) - Method in class org.iot.dsa.node.DSMetadata
-
-
The unit identifier.
-
-
shutdown() - Method in class org.iot.dsa.dslink.DSLink
-
-
Properly shuts down the link when a thread is executing the run method.
-
-
sign(byte[], int, int) - Method in class org.iot.dsa.security.DSKeys
-
-
A convenience that creates a signer and signs the given bytes.
-
-
Signer(PrivateKey) - Constructor for class org.iot.dsa.security.DSKeys.Signer
-
 
-
SimpleInvokeHandler - Class in org.iot.dsa.dslink.requester
-
-
Action handler for non-tables/streams.
-
-
SimpleInvokeHandler() - Constructor for class org.iot.dsa.dslink.requester.SimpleInvokeHandler
-
 
-
SimpleRequestHandler - Class in org.iot.dsa.dslink.requester
-
-
Empty callback implementations.
-
-
SimpleRequestHandler() - Constructor for class org.iot.dsa.dslink.requester.SimpleRequestHandler
-
 
-
size() - Method in class org.iot.dsa.node.DSGroup
-
-
The number of items is the group.
-
-
size() - Method in class org.iot.dsa.node.DSList
-
 
-
size() - Method in class org.iot.dsa.node.DSMap
-
 
-
splitPath(String) - Static method in class org.iot.dsa.node.DSPath
-
-
Splits the path, but does not decode any names.
-
-
stable() - Method in class org.iot.dsa.node.DSNode
-
-
Called after the entire subtree is started.
-
-
STALE - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, the value hasn't updated in a reasonable amount of time (user configurable on a per - point basis) within DSA.
-
-
stale - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
STALE_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
start() - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
This must be called for the handler to actually do anything.
-
-
start() - Method in class org.iot.dsa.node.DSNode
-
-
Sets the state to starting.
-
-
stop() - Method in class org.iot.dsa.node.DSNode
-
-
Sets the state to stopped.
-
-
store() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
store() - Method in interface org.iot.dsa.node.DSIStorable
-
-
Serialize the value for the configuration database.
-
-
store() - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
store() - Method in class org.iot.dsa.node.DSStatus
-
 
-
store(File) - Method in class org.iot.dsa.security.DSKeys
-
-
Write the bytes from the string encoding to the given file.
-
-
store(OutputStream) - Method in class org.iot.dsa.security.DSKeys
-
-
Writes the bytes from the string encoding to the given stream, does not onClose the stream.
-
-
store() - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
store() - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
subscribe(String, int, OutboundSubscribeHandler) - Method in interface org.iot.dsa.dslink.DSIRequester
-
-
Submits a subscribe request.
-
-
subscribe(DSTopic, DSInfo, DSISubscriber) - Method in class org.iot.dsa.node.DSNode
-
-
Subscribes the child and topic.
-
-
SubscriptionCloseHandler - Interface in org.iot.dsa.dslink.responder
-
-
The responder returns this from the subscription request notification method so the link can - notify the responder whenever a subscription is terminated.
-
-
- - - -

T

-
-
throwRuntime(Throwable) - Static method in exception org.iot.dsa.util.DSException
-
-
If the given exception is already a runtime exception, it is rethrown, otherwise - it will be thrown wrapped by an instance of this class.
-
-
timeInMillis() - Method in class org.iot.dsa.time.DSDateTime
-
-
The Java time represented by this object.
-
-
toBoolean() - Method in class org.iot.dsa.node.DSBool
-
 
-
toBoolean() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toBoolean() - Method in class org.iot.dsa.node.DSElement
-
-
Attempts to return a boolean value.
-
-
toBoolean() - Method in interface org.iot.dsa.node.DSIBoolean
-
 
-
toBoolean() - Method in class org.iot.dsa.node.DSLong
-
 
-
toBoolean() - Method in class org.iot.dsa.node.DSString
-
 
-
toBytes() - Method in class org.iot.dsa.node.DSBytes
-
 
-
toBytes() - Method in class org.iot.dsa.node.DSElement
-
-
Returns the raw byte array for DSBytes only, which should not be modified.
-
-
toDouble() - Method in class org.iot.dsa.node.DSBool
-
-
0 or 1.
-
-
toDouble() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toDouble() - Method in class org.iot.dsa.node.DSElement
-
-
Attempts to return a double value.
-
-
toDouble() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toDouble() - Method in class org.iot.dsa.node.DSInt
-
 
-
toDouble() - Method in interface org.iot.dsa.node.DSINumber
-
-
If not a double, will cast the underlying value.
-
-
toDouble() - Method in class org.iot.dsa.node.DSLong
-
 
-
toElement() - Method in class org.iot.dsa.node.DSElement
-
-
Returns this.
-
-
toElement() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
toElement() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toElement() - Method in class org.iot.dsa.node.DSInt
-
 
-
toElement() - Method in interface org.iot.dsa.node.DSIValue
-
-
The current value should convert itself to an element for DSA interop such as subscription - updates, and setting requests.
-
-
toElement() - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
toElement() - Method in class org.iot.dsa.node.DSList
-
 
-
toElement() - Method in class org.iot.dsa.node.DSMap
-
 
-
toElement() - Method in class org.iot.dsa.node.DSNull
-
-
Returns this.
-
-
toElement() - Method in class org.iot.dsa.node.DSStatus
-
 
-
toElement() - Method in class org.iot.dsa.node.DSValueNode
-
 
-
toElement() - Method in class org.iot.dsa.security.DSPasswordAes
-
-
Returns a string representing the url safe base64 encoding of the hash.
-
-
toElement() - Method in class org.iot.dsa.security.DSPasswordSha256
-
-
Returns a string representing the url safe base64 encoding of the hash.
-
-
toElement() - Method in class org.iot.dsa.time.DSDateTime
-
 
-
toEnum() - Method in class org.iot.dsa.node.DSJavaEnum
-
-
The Java enum.
-
-
toFloat() - Method in class org.iot.dsa.node.DSBool
-
-
0 or 1.
-
-
toFloat() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toFloat() - Method in class org.iot.dsa.node.DSElement
-
-
Attempts to return a float value.
-
-
toFloat() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toFloat() - Method in class org.iot.dsa.node.DSInt
-
 
-
toFloat() - Method in interface org.iot.dsa.node.DSINumber
-
-
If not a float, will cast the underlying value.
-
-
toFloat() - Method in class org.iot.dsa.node.DSLong
-
 
-
toGroup() - Method in class org.iot.dsa.node.DSElement
-
-
Lists and maps return themselves, everything else results in an exception.
-
-
toGroup() - Method in class org.iot.dsa.node.DSGroup
-
 
-
toHex(byte, StringBuilder) - Static method in class org.iot.dsa.node.DSBytes
-
-
Converts the bytes into a hex string.
-
-
toHex(byte[], StringBuilder) - Static method in class org.iot.dsa.node.DSBytes
-
-
Converts the bytes into a hex string.
-
-
toInt() - Method in class org.iot.dsa.node.DSBool
-
-
0 or 1.
-
-
toInt() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toInt() - Method in class org.iot.dsa.node.DSElement
-
-
Attempts to return an int value.
-
-
toInt() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toInt() - Method in class org.iot.dsa.node.DSInt
-
 
-
toInt() - Method in interface org.iot.dsa.node.DSINumber
-
-
If not an int, will cast the underlying value.
-
-
toInt() - Method in class org.iot.dsa.node.DSLong
-
 
-
toList() - Method in class org.iot.dsa.node.DSElement
-
-
Lists return themselves, everything else results in an exception.
-
-
toList() - Method in class org.iot.dsa.node.DSList
-
 
-
toLong() - Method in class org.iot.dsa.node.DSBool
-
-
0 or 1.
-
-
toLong() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toLong() - Method in class org.iot.dsa.node.DSElement
-
-
Attempts to return a long value.
-
-
toLong() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toLong() - Method in class org.iot.dsa.node.DSInt
-
 
-
toLong() - Method in interface org.iot.dsa.node.DSINumber
-
-
If not a long, will cast the underlying value.
-
-
toLong() - Method in class org.iot.dsa.node.DSLong
-
 
-
toMap() - Method in class org.iot.dsa.node.DSElement
-
-
Maps return themselves, everything else results in an exception.
-
-
toMap() - Method in class org.iot.dsa.node.DSMap
-
 
-
toNode(Object) - Static method in class org.iot.dsa.node.DSNode
-
-
A convenience that casts the argument to a node.
-
-
toNumber() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toNumber() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toNumber() - Method in class org.iot.dsa.node.DSInt
-
 
-
toNumber() - Method in interface org.iot.dsa.node.DSINumber
-
-
Returns the Java primitive wrapper.
-
-
toNumber() - Method in class org.iot.dsa.node.DSLong
-
 
-
toStatus() - Method in interface org.iot.dsa.node.DSIStatus
-
 
-
toStatus() - Method in class org.iot.dsa.node.DSStatus
-
 
-
toString() - Method in class org.iot.dsa.DSRuntime.Timer
-
 
-
toString() - Method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
 
-
toString() - Method in class org.iot.dsa.node.DSBool
-
 
-
toString() - Method in class org.iot.dsa.node.DSBytes
-
 
-
toString() - Method in class org.iot.dsa.node.DSDouble
-
 
-
toString() - Method in enum org.iot.dsa.node.DSElementType
-
 
-
toString() - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
toString() - Method in class org.iot.dsa.node.DSFloat
-
 
-
toString() - Method in class org.iot.dsa.node.DSGroup
-
-
Json encodes the graph, be careful.
-
-
toString() - Method in interface org.iot.dsa.node.DSIEnum
-
-
The string representation of the the enum value.
-
-
toString() - Method in class org.iot.dsa.node.DSInt
-
 
-
toString() - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
toString() - Method in class org.iot.dsa.node.DSLong
-
 
-
toString() - Method in class org.iot.dsa.node.DSNull
-
 
-
toString() - Method in class org.iot.dsa.node.DSStatus
-
 
-
toString() - Method in class org.iot.dsa.node.DSString
-
 
-
toString() - Method in class org.iot.dsa.node.DSValue
-
-
If isNull(), returns "null", otherwise returns toElement().toString()
-
-
toString() - Method in enum org.iot.dsa.node.DSValueType
-
 
-
toString() - Method in class org.iot.dsa.security.DSPasswordAes
-
 
-
toString() - Method in class org.iot.dsa.security.DSPasswordSha256
-
 
-
toString() - Method in enum org.iot.dsa.security.DSPermission
-
 
-
toString() - Method in class org.iot.dsa.time.DSDateTime
-
-
ISO 8601 standard format of "yyyy-mm-ddThh:mm:ss.mmm[+/-]hh:mm".
-
-
toString() - Method in exception org.iot.dsa.util.DSException
-
 
-
TRACE - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
trace - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
trace() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
trace(Object) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log a trace or verbose event.
-
-
trace(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log a trace or verbose event.
-
-
trimBackups() - Method in class org.iot.dsa.logging.FileLogHandler
-
-
Only public for testing, do not call.
-
-
TRUE - Static variable in class org.iot.dsa.node.DSBool
-
 
-
TYPE - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
- - - -

U

-
-
UNIT - Static variable in class org.iot.dsa.node.DSMetadata
-
 
-
UNKNOWN - Static variable in class org.iot.dsa.node.DSStatus
-
-
Bad, the status is unknown within DSA, typically the initial state at boot.
-
-
unknown - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
UNKNOWN_STR - Static variable in class org.iot.dsa.node.DSStatus
-
 
-
unsubscribe(DSTopic, DSInfo, DSISubscriber) - Method in class org.iot.dsa.node.DSNode
-
-
Unsubscribes the tuple.
-
-
update(long, DSIValue, DSStatus) - Method in interface org.iot.dsa.dslink.responder.InboundSubscribeRequest
-
-
The responder should call this when first received and then whenever the value or status - changes.
-
-
update(byte[]) - Method in class org.iot.dsa.security.DSKeys.Signer
-
-
Update the signature with the given bytes.
-
-
update(byte[], int, int) - Method in class org.iot.dsa.security.DSKeys.Signer
-
-
Update the signature with the given bytes.
-
-
update(byte[]) - Method in class org.iot.dsa.security.DSKeys.Verifier
-
-
Update the signature with the given bytes.
-
-
update(byte[], int, int) - Method in class org.iot.dsa.security.DSKeys.Verifier
-
-
Update the signature with the given bytes.
-
-
UTF8 - Static variable in class org.iot.dsa.node.DSString
-
-
The standard UTF8 charset, can be used with string.getBytes(Charset).
-
-
- - - -

V

-
-
valBoolean - Variable in class org.iot.dsa.io.AbstractReader
-
 
-
valBytes - Variable in class org.iot.dsa.io.AbstractReader
-
 
-
validate(byte[]) - Method in class org.iot.dsa.security.DSKeys.Verifier
-
-
Returns true if the given signature is valid for the bytes passed to update.
-
-
validate(String) - Method in class org.iot.dsa.security.DSKeys.Verifier
-
-
Returns true if the given base 64 encoded signature is valid for the bytes passed to - update.
-
-
validateChild(DSIObject) - Method in class org.iot.dsa.node.DSNode
-
-
Override point, throw a meaningful IllegalArgumentException if the child is not allowed
-
-
validateParent(DSNode) - Method in class org.iot.dsa.dslink.DSMainNode
-
-
The parent must be a DSLink instance.
-
-
validateParent(DSNode) - Method in class org.iot.dsa.dslink.DSSysNode
-
 
-
validateParent(DSNode) - Method in class org.iot.dsa.node.DSNode
-
-
Override point, throw a meaningful IllegalArgumentException if the parent is not allowed
-
-
valLong - Variable in class org.iot.dsa.io.AbstractReader
-
 
-
valReal - Variable in class org.iot.dsa.io.AbstractReader
-
 
-
valString - Variable in class org.iot.dsa.io.AbstractReader
-
 
-
value(DSElement) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(boolean) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(byte[]) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(double) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(int) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(long) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(String) - Method in class org.iot.dsa.io.AbstractWriter
-
 
-
value(DSElement) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(boolean) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(byte[]) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(double) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(int) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(long) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(String) - Method in interface org.iot.dsa.io.DSIWriter
-
-
Write a value to the map or list.
-
-
value(DSElement) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
VALUE_TOPIC - Static variable in class org.iot.dsa.node.DSNode
-
 
-
valueOf(String) - Static method in enum org.iot.dsa.dslink.requester.ErrorType
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - Static method in enum org.iot.dsa.dslink.requester.OutboundInvokeHandler.Mode
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - Static method in enum org.iot.dsa.io.DSIReader.Token
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - Static method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(boolean) - Static method in class org.iot.dsa.node.DSBool
-
-
Will return either TRUE or FALSE.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSBool
-
 
-
valueOf(String) - Static method in class org.iot.dsa.node.DSBool
-
-
Will return NULL, TRUE or FALSE.
-
-
valueOf(byte[]) - Static method in class org.iot.dsa.node.DSBytes
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSBytes
-
 
-
valueOf(String) - Static method in class org.iot.dsa.node.DSBytes
-
-
Decodes a base64 encoded byte array.
-
-
valueOf(double) - Static method in class org.iot.dsa.node.DSDouble
-
-
Attempts to reuse some common values before creating a new instance.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSDouble
-
 
-
valueOf(String) - Static method in class org.iot.dsa.node.DSDouble
-
-
Checks for null, then uses Double.parseDouble()
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSElement
-
-
Returns the argument.
-
-
valueOf(String) - Static method in enum org.iot.dsa.node.DSElementType
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSFlexEnum
-
 
-
valueOf(String, DSList) - Static method in class org.iot.dsa.node.DSFlexEnum
-
-
Creates a enum representing the given value and range.
-
-
valueOf(String) - Method in class org.iot.dsa.node.DSFlexEnum
-
-
Creates a new enum for the given value using the range from this instance.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSFloat
-
 
-
valueOf(float) - Static method in class org.iot.dsa.node.DSFloat
-
-
Attempts to reuse some common values before creating a new instance.
-
-
valueOf(String) - Static method in class org.iot.dsa.node.DSFloat
-
-
Checks for null, then uses Float.parseFloat()
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSInt
-
 
-
valueOf(int) - Static method in class org.iot.dsa.node.DSInt
-
-
Attempts to reuse some common values before creating a new instance.
-
-
valueOf(String) - Static method in class org.iot.dsa.node.DSInt
-
-
Checks for null, then uses Float.parseFloat()
-
-
valueOf(DSElement) - Method in interface org.iot.dsa.node.DSIValue
-
-
This should convert an element transmitted over DSA, such as subscription updates or set - requests.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
valueOf(Enum) - Static method in class org.iot.dsa.node.DSJavaEnum
-
-
Creates an enum for the given value (and it's range).
-
-
valueOf(String) - Method in class org.iot.dsa.node.DSJavaEnum
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSList
-
 
-
valueOf(DSElement...) - Static method in class org.iot.dsa.node.DSList
-
 
-
valueOf(Double...) - Static method in class org.iot.dsa.node.DSList
-
 
-
valueOf(Long...) - Static method in class org.iot.dsa.node.DSList
-
 
-
valueOf(String...) - Static method in class org.iot.dsa.node.DSList
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSLong
-
-
Returns this.
-
-
valueOf(long) - Static method in class org.iot.dsa.node.DSLong
-
-
Attempts to reuse some common values before creating a new instance.
-
-
valueOf(String) - Static method in class org.iot.dsa.node.DSLong
-
-
Checks for null, then uses Float.parseFloat()
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSMap
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSNull
-
-
Returns this.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSStatus
-
 
-
valueOf(String) - Static method in class org.iot.dsa.node.DSStatus
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSString
-
 
-
valueOf(Object) - Static method in class org.iot.dsa.node.DSString
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.node.DSValueNode
-
 
-
valueOf(String) - Static method in enum org.iot.dsa.node.DSValueType
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - Static method in enum org.iot.dsa.node.event.DSInfoTopic.Event
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - Static method in enum org.iot.dsa.node.event.DSValueTopic.Event
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.security.DSPasswordAes
-
-
Creates a encrypted password for the given clear text.
-
-
valueOf(String) - Static method in class org.iot.dsa.security.DSPasswordAes
-
-
Creates a encrypted password for the given clear text.
-
-
valueOf(DSElement) - Method in class org.iot.dsa.security.DSPasswordSha256
-
-
Creates a digest password for the given clear text.
-
-
valueOf(String) - Static method in class org.iot.dsa.security.DSPasswordSha256
-
-
Creates a digest password for the given clear text.
-
-
valueOf(String) - Static method in enum org.iot.dsa.security.DSPermission
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(int) - Static method in enum org.iot.dsa.security.DSPermission
-
 
-
valueOf(DSElement) - Method in class org.iot.dsa.time.DSDateTime
-
 
-
valueOf(long) - Static method in class org.iot.dsa.time.DSDateTime
-
 
-
valueOf(String) - Static method in class org.iot.dsa.time.DSDateTime
-
-
Decodes an ISO 8601 standard format of "yyyy-mm-ddThh:mm:ss.mmm[+/-]hh:mm".
-
-
valueOf(String) - Static method in enum org.iot.dsa.time.DSInterval
-
-
Returns the enum constant of this type with the specified name.
-
-
values() - Static method in enum org.iot.dsa.dslink.requester.ErrorType
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.dslink.requester.OutboundInvokeHandler.Mode
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.io.DSIReader.Token
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.node.action.ActionSpec.ResultType
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.node.DSElementType
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.node.DSValueType
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.node.event.DSInfoTopic.Event
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.node.event.DSValueTopic.Event
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.security.DSPermission
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
values() - Static method in enum org.iot.dsa.time.DSInterval
-
-
Returns an array containing the constants of this enum type, in -the order they are declared.
-
-
Verifier(PublicKey) - Constructor for class org.iot.dsa.security.DSKeys.Verifier
-
 
-
verify(byte[], int, int, String) - Method in class org.iot.dsa.security.DSKeys
-
-
A convenience that creates a verifier and validates the signature for the given bytes.
-
-
- - - -

W

-
-
WARN - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
warn - Static variable in interface org.iot.dsa.logging.DSILevels
-
 
-
warn() - Method in class org.iot.dsa.logging.DSLogger
-
-
True if the level is loggable.
-
-
warn(Object) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log an unusual but not critical event.
-
-
warn(Object, Throwable) - Method in class org.iot.dsa.logging.DSLogger
-
-
Log an unusual but not critical event.
-
-
wasHelpRequested() - Method in class org.iot.dsa.dslink.DSLinkConfig
-
-
Whether or not -h or --help was provided.
-
-
write(boolean) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write the value.
-
-
write(byte[]) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write the value.
-
-
write(double) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write the value.
-
-
write(long) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write the value.
-
-
write(boolean) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
write(byte[]) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
write(double) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
write(long) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
write(LogRecord) - Method in class org.iot.dsa.logging.AsyncLogHandler
-
-
Formats and writes the logging record the underlying stream.
-
-
writeDouble(double, byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a byte array.
-
-
writeDouble(double, OutputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a stream.
-
-
writeFloat(float, byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a byte array.
-
-
writeFloat(float, OutputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a stream
-
-
writeInt(int, byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a byte array.
-
-
writeInt(int, OutputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a stream.
-
-
writeKey(CharSequence) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write string key of a map entry.
-
-
writeKey(CharSequence) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeKeyValueSeparator() - Method in class org.iot.dsa.io.AbstractWriter
-
-
Separate the key from the value in a map.
-
-
writeKeyValueSeparator() - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeListEnd() - Method in class org.iot.dsa.io.AbstractWriter
-
-
End the current list.
-
-
writeListEnd() - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeListStart(int) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Start a new list.
-
-
writeListStart(int) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeLong(long, byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a byte array.
-
-
writeLong(long, OutputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a stream.
-
-
writeMapEnd() - Method in class org.iot.dsa.io.AbstractWriter
-
-
End the current map.
-
-
writeMapEnd() - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeMapStart(int) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Start a new map.
-
-
writeMapStart(int) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeNewLineIndent() - Method in class org.iot.dsa.io.AbstractWriter
-
-
Override point for subclasses which perform use pretty printing, such as json.
-
-
writeNewLineIndent() - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
-
Two spaces per level.
-
-
writeNull() - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write a null value.
-
-
writeNull() - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeSeparator() - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write a value separator, such as the comma in json.
-
-
writeSeparator() - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
writeShort(short, byte[], int, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a byte array.
-
-
writeShort(short, OutputStream, boolean) - Static method in class org.iot.dsa.node.DSBytes
-
-
Encodes the primitive into a stream.
-
-
writeValue(CharSequence) - Method in class org.iot.dsa.io.AbstractWriter
-
-
Write the value, which will never be null.
-
-
writeValue(CharSequence) - Method in class org.iot.dsa.io.json.AbstractJsonWriter
-
 
-
-A B C D E F G H I J K L M N O P R S T U V W 
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/index.html b/docs/javadoc/index.html deleted file mode 100644 index 0ee688ed..00000000 --- a/docs/javadoc/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - -<<<<<<< HEAD - -dslink-core 0.19.0 API -======= - -dslink-core 0.20.0 API ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - - - -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -<h2>Frame Alert</h2> -<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> - - - diff --git a/docs/javadoc/org/iot/dsa/DSRuntime.Timer.html b/docs/javadoc/org/iot/dsa/DSRuntime.Timer.html deleted file mode 100644 index 3a42047e..00000000 --- a/docs/javadoc/org/iot/dsa/DSRuntime.Timer.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - -<<<<<<< HEAD - -DSRuntime.Timer (dslink-core 0.19.0 API) - -======= - -DSRuntime.Timer (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa
-

Class DSRuntime.Timer

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/DSRuntime.html b/docs/javadoc/org/iot/dsa/DSRuntime.html deleted file mode 100644 index d720ff2a..00000000 --- a/docs/javadoc/org/iot/dsa/DSRuntime.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - -<<<<<<< HEAD - -DSRuntime (dslink-core 0.19.0 API) - -======= - -DSRuntime (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa
-

Class DSRuntime

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSIRequester.html b/docs/javadoc/org/iot/dsa/dslink/DSIRequester.html deleted file mode 100644 index 45abfe60..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSIRequester.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIRequester (dslink-core 0.19.0 API) - -======= - -DSIRequester (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Interface DSIRequester

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSIResponder.html b/docs/javadoc/org/iot/dsa/dslink/DSIResponder.html deleted file mode 100644 index 61ab8f99..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSIResponder.html +++ /dev/null @@ -1,326 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIResponder (dslink-core 0.19.0 API) - -======= - -DSIResponder (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Interface DSIResponder

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSInternalErrorException.html b/docs/javadoc/org/iot/dsa/dslink/DSInternalErrorException.html deleted file mode 100644 index b23633ee..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSInternalErrorException.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - -<<<<<<< HEAD:docs/javadoc/org/iot/dsa/dslink/DSInternalErrorException.html - -DSInternalErrorException (dslink-core 0.19.0 API) - -======= - -DSInternalErrorException (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9:docs/javadoc/org/iot/dsa/dslink/DSInternalErrorException.html - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSInternalErrorException

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSInvalidPathException.html b/docs/javadoc/org/iot/dsa/dslink/DSInvalidPathException.html deleted file mode 100644 index 435655ef..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSInvalidPathException.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - -<<<<<<< HEAD - -DSInvalidPathException (dslink-core 0.19.0 API) - -======= - -DSInvalidPathException (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSInvalidPathException

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSLink.html b/docs/javadoc/org/iot/dsa/dslink/DSLink.html deleted file mode 100644 index 1cb8a2ad..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSLink.html +++ /dev/null @@ -1,652 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLink (dslink-core 0.19.0 API) - -======= - -DSLink (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSLink

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSLinkConfig.html b/docs/javadoc/org/iot/dsa/dslink/DSLinkConfig.html deleted file mode 100644 index 7f3faaf1..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSLinkConfig.html +++ /dev/null @@ -1,1083 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLinkConfig (dslink-core 0.19.0 API) - -======= - -DSLinkConfig (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSLinkConfig

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSLinkConnection.Listener.html b/docs/javadoc/org/iot/dsa/dslink/DSLinkConnection.Listener.html deleted file mode 100644 index 5642730d..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSLinkConnection.Listener.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLinkConnection.Listener (dslink-core 0.19.0 API) - -======= - -DSLinkConnection.Listener (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Interface DSLinkConnection.Listener

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSLinkConnection.html b/docs/javadoc/org/iot/dsa/dslink/DSLinkConnection.html deleted file mode 100644 index 83cf19cd..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSLinkConnection.html +++ /dev/null @@ -1,609 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLinkConnection (dslink-core 0.19.0 API) - -======= - -DSLinkConnection (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSLinkConnection

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSMainNode.html b/docs/javadoc/org/iot/dsa/dslink/DSMainNode.html deleted file mode 100644 index 0e047385..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSMainNode.html +++ /dev/null @@ -1,414 +0,0 @@ - - - - -<<<<<<< HEAD - -DSMainNode (dslink-core 0.19.0 API) - -======= - -DSMainNode (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSMainNode

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSPermissionException.html b/docs/javadoc/org/iot/dsa/dslink/DSPermissionException.html deleted file mode 100644 index 3280a171..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSPermissionException.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - -<<<<<<< HEAD - -DSPermissionException (dslink-core 0.19.0 API) - -======= - -DSPermissionException (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSPermissionException

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSRequestException.html b/docs/javadoc/org/iot/dsa/dslink/DSRequestException.html deleted file mode 100644 index 76fd8f4d..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSRequestException.html +++ /dev/null @@ -1,361 +0,0 @@ - - - - -<<<<<<< HEAD - -DSRequestException (dslink-core 0.19.0 API) - -======= - -DSRequestException (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSRequestException

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSSysNode.html b/docs/javadoc/org/iot/dsa/dslink/DSSysNode.html deleted file mode 100644 index a06ca026..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSSysNode.html +++ /dev/null @@ -1,451 +0,0 @@ - - - - -<<<<<<< HEAD - -DSSysNode (dslink-core 0.19.0 API) - -======= - -DSSysNode (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSSysNode

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/DSUnsupportedException.html b/docs/javadoc/org/iot/dsa/dslink/DSUnsupportedException.html deleted file mode 100644 index 510b253d..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/DSUnsupportedException.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - -<<<<<<< HEAD - -DSUnsupportedException (dslink-core 0.19.0 API) - -======= - -DSUnsupportedException (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink
-

Class DSUnsupportedException

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/package-frame.html b/docs/javadoc/org/iot/dsa/dslink/package-frame.html deleted file mode 100644 index 9a6f4cc4..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/package-frame.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.dslink

-
-

Interfaces

- -

Classes

- -

Exceptions

- -
- - diff --git a/docs/javadoc/org/iot/dsa/dslink/package-summary.html b/docs/javadoc/org/iot/dsa/dslink/package-summary.html deleted file mode 100644 index 0b9c120f..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/package-summary.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.dslink

-
-
DSLink is the main entry point for an application.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa.dslink Description

-
DSLink is the main entry point for an application.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/package-tree.html b/docs/javadoc/org/iot/dsa/dslink/package-tree.html deleted file mode 100644 index 15fb7ce9..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/package-tree.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.dslink

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/AbstractInvokeHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/AbstractInvokeHandler.html deleted file mode 100644 index 7b3f5f86..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/AbstractInvokeHandler.html +++ /dev/null @@ -1,385 +0,0 @@ - - - - -<<<<<<< HEAD - -AbstractInvokeHandler (dslink-core 0.19.0 API) - -======= - -AbstractInvokeHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Class AbstractInvokeHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/AbstractListHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/AbstractListHandler.html deleted file mode 100644 index 9b7babae..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/AbstractListHandler.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - -<<<<<<< HEAD - -AbstractListHandler (dslink-core 0.19.0 API) - -======= - -AbstractListHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Class AbstractListHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/AbstractSubscribeHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/AbstractSubscribeHandler.html deleted file mode 100644 index 64eb839c..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/AbstractSubscribeHandler.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - -<<<<<<< HEAD - -AbstractSubscribeHandler (dslink-core 0.19.0 API) - -======= - -AbstractSubscribeHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Class AbstractSubscribeHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/ErrorType.html b/docs/javadoc/org/iot/dsa/dslink/requester/ErrorType.html deleted file mode 100644 index 03692efa..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/ErrorType.html +++ /dev/null @@ -1,388 +0,0 @@ - - - - -<<<<<<< HEAD:docs/javadoc/org/iot/dsa/dslink/requester/ErrorType.html - -ErrorType (dslink-core 0.19.0 API) - -======= - -ErrorType (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9:docs/javadoc/org/iot/dsa/dslink/requester/ErrorType.html - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Enum ErrorType

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundInvokeHandler.Mode.html b/docs/javadoc/org/iot/dsa/dslink/requester/OutboundInvokeHandler.Mode.html deleted file mode 100644 index ea4fa01f..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundInvokeHandler.Mode.html +++ /dev/null @@ -1,365 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundInvokeHandler.Mode (dslink-core 0.19.0 API) - -======= - -OutboundInvokeHandler.Mode (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Enum OutboundInvokeHandler.Mode

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundInvokeHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/OutboundInvokeHandler.html deleted file mode 100644 index 995a9c13..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundInvokeHandler.html +++ /dev/null @@ -1,398 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundInvokeHandler (dslink-core 0.19.0 API) - -======= - -OutboundInvokeHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Interface OutboundInvokeHandler

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundListHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/OutboundListHandler.html deleted file mode 100644 index fa2eca66..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundListHandler.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundListHandler (dslink-core 0.19.0 API) - -======= - -OutboundListHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Interface OutboundListHandler

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundRequestHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/OutboundRequestHandler.html deleted file mode 100644 index 53205f8b..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundRequestHandler.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundRequestHandler (dslink-core 0.19.0 API) - -======= - -OutboundRequestHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Interface OutboundRequestHandler

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundStream.html b/docs/javadoc/org/iot/dsa/dslink/requester/OutboundStream.html deleted file mode 100644 index cb3327ca..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundStream.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundStream (dslink-core 0.19.0 API) - -======= - -OutboundStream (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Interface OutboundStream

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundSubscribeHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/OutboundSubscribeHandler.html deleted file mode 100644 index 75fcfff3..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/OutboundSubscribeHandler.html +++ /dev/null @@ -1,285 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundSubscribeHandler (dslink-core 0.19.0 API) - -======= - -OutboundSubscribeHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Interface OutboundSubscribeHandler

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/SimpleInvokeHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/SimpleInvokeHandler.html deleted file mode 100644 index 4289f524..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/SimpleInvokeHandler.html +++ /dev/null @@ -1,510 +0,0 @@ - - - - -<<<<<<< HEAD - -SimpleInvokeHandler (dslink-core 0.19.0 API) - -======= - -SimpleInvokeHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Class SimpleInvokeHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/SimpleRequestHandler.html b/docs/javadoc/org/iot/dsa/dslink/requester/SimpleRequestHandler.html deleted file mode 100644 index 3c2a4b01..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/SimpleRequestHandler.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - -<<<<<<< HEAD - -SimpleRequestHandler (dslink-core 0.19.0 API) - -======= - -SimpleRequestHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.requester
-

Class SimpleRequestHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/package-frame.html b/docs/javadoc/org/iot/dsa/dslink/requester/package-frame.html deleted file mode 100644 index a3db4b9d..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/package-frame.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink.requester (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink.requester (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.dslink.requester

-
-

Interfaces

- -

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/package-summary.html b/docs/javadoc/org/iot/dsa/dslink/requester/package-summary.html deleted file mode 100644 index 5f5c2bad..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/package-summary.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink.requester (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink.requester (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.dslink.requester

-
-
API for implementing requesters without having to modeling everything in the node tree.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa.dslink.requester Description

-
API for implementing requesters without having to modeling everything in the node tree.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/requester/package-tree.html b/docs/javadoc/org/iot/dsa/dslink/requester/package-tree.html deleted file mode 100644 index a6e783aa..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/requester/package-tree.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink.requester Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink.requester Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.dslink.requester

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/ApiObject.html b/docs/javadoc/org/iot/dsa/dslink/responder/ApiObject.html deleted file mode 100644 index 149e99d2..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/ApiObject.html +++ /dev/null @@ -1,394 +0,0 @@ - - - - -<<<<<<< HEAD - -ApiObject (dslink-core 0.19.0 API) - -======= - -ApiObject (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface ApiObject

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/InboundInvokeRequest.html b/docs/javadoc/org/iot/dsa/dslink/responder/InboundInvokeRequest.html deleted file mode 100644 index 869e6dd5..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/InboundInvokeRequest.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - -<<<<<<< HEAD - -InboundInvokeRequest (dslink-core 0.19.0 API) - -======= - -InboundInvokeRequest (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface InboundInvokeRequest

-
-
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/InboundListRequest.html b/docs/javadoc/org/iot/dsa/dslink/responder/InboundListRequest.html deleted file mode 100644 index 1e607b7b..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/InboundListRequest.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - -<<<<<<< HEAD - -InboundListRequest (dslink-core 0.19.0 API) - -======= - -InboundListRequest (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface InboundListRequest

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/InboundRequest.html b/docs/javadoc/org/iot/dsa/dslink/responder/InboundRequest.html deleted file mode 100644 index a8977472..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/InboundRequest.html +++ /dev/null @@ -1,253 +0,0 @@ - - - - -<<<<<<< HEAD - -InboundRequest (dslink-core 0.19.0 API) - -======= - -InboundRequest (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface InboundRequest

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/InboundSetRequest.html b/docs/javadoc/org/iot/dsa/dslink/responder/InboundSetRequest.html deleted file mode 100644 index fe9caa17..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/InboundSetRequest.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - -<<<<<<< HEAD - -InboundSetRequest (dslink-core 0.19.0 API) - -======= - -InboundSetRequest (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface InboundSetRequest

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/InboundSubscribeRequest.html b/docs/javadoc/org/iot/dsa/dslink/responder/InboundSubscribeRequest.html deleted file mode 100644 index 9878a339..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/InboundSubscribeRequest.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - -<<<<<<< HEAD - -InboundSubscribeRequest (dslink-core 0.19.0 API) - -======= - -InboundSubscribeRequest (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface InboundSubscribeRequest

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/OutboundListResponse.html b/docs/javadoc/org/iot/dsa/dslink/responder/OutboundListResponse.html deleted file mode 100644 index 90b06d47..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/OutboundListResponse.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - -<<<<<<< HEAD - -OutboundListResponse (dslink-core 0.19.0 API) - -======= - -OutboundListResponse (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface OutboundListResponse

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/SubscriptionCloseHandler.html b/docs/javadoc/org/iot/dsa/dslink/responder/SubscriptionCloseHandler.html deleted file mode 100644 index abed8699..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/SubscriptionCloseHandler.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - -<<<<<<< HEAD - -SubscriptionCloseHandler (dslink-core 0.19.0 API) - -======= - -SubscriptionCloseHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.dslink.responder
-

Interface SubscriptionCloseHandler

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/package-frame.html b/docs/javadoc/org/iot/dsa/dslink/responder/package-frame.html deleted file mode 100644 index 43931579..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/package-frame.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink.responder (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink.responder (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.dslink.responder

-
-

Interfaces

- -
- - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/package-summary.html b/docs/javadoc/org/iot/dsa/dslink/responder/package-summary.html deleted file mode 100644 index c2f19ba0..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/package-summary.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink.responder (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink.responder (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.dslink.responder

-
-
API for implementing responders without having modeling everything in the node tree.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa.dslink.responder Description

-
API for implementing responders without having modeling everything in the node tree.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/dslink/responder/package-tree.html b/docs/javadoc/org/iot/dsa/dslink/responder/package-tree.html deleted file mode 100644 index bd4ac5bb..00000000 --- a/docs/javadoc/org/iot/dsa/dslink/responder/package-tree.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.dslink.responder Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.dslink.responder Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.dslink.responder

-Package Hierarchies: - -
-
-

Interface Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/AbstractReader.html b/docs/javadoc/org/iot/dsa/io/AbstractReader.html deleted file mode 100644 index b9a1e7b7..00000000 --- a/docs/javadoc/org/iot/dsa/io/AbstractReader.html +++ /dev/null @@ -1,774 +0,0 @@ - - - - -<<<<<<< HEAD - -AbstractReader (dslink-core 0.19.0 API) - -======= - -AbstractReader (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Class AbstractReader

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/AbstractWriter.html b/docs/javadoc/org/iot/dsa/io/AbstractWriter.html deleted file mode 100644 index 9a3f5feb..00000000 --- a/docs/javadoc/org/iot/dsa/io/AbstractWriter.html +++ /dev/null @@ -1,987 +0,0 @@ - - - - -<<<<<<< HEAD - -AbstractWriter (dslink-core 0.19.0 API) - -======= - -AbstractWriter (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Class AbstractWriter

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/DSBase64.html b/docs/javadoc/org/iot/dsa/io/DSBase64.html deleted file mode 100644 index 165ce39f..00000000 --- a/docs/javadoc/org/iot/dsa/io/DSBase64.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - -<<<<<<< HEAD - -DSBase64 (dslink-core 0.19.0 API) - -======= - -DSBase64 (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Class DSBase64

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/DSIReader.Token.html b/docs/javadoc/org/iot/dsa/io/DSIReader.Token.html deleted file mode 100644 index a556821d..00000000 --- a/docs/javadoc/org/iot/dsa/io/DSIReader.Token.html +++ /dev/null @@ -1,474 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIReader.Token (dslink-core 0.19.0 API) - -======= - -DSIReader.Token (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Enum DSIReader.Token

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/DSIReader.html b/docs/javadoc/org/iot/dsa/io/DSIReader.html deleted file mode 100644 index 3ca2c33b..00000000 --- a/docs/javadoc/org/iot/dsa/io/DSIReader.html +++ /dev/null @@ -1,481 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIReader (dslink-core 0.19.0 API) - -======= - -DSIReader (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Interface DSIReader

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/DSIWriter.html b/docs/javadoc/org/iot/dsa/io/DSIWriter.html deleted file mode 100644 index d040a57b..00000000 --- a/docs/javadoc/org/iot/dsa/io/DSIWriter.html +++ /dev/null @@ -1,616 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIWriter (dslink-core 0.19.0 API) - -======= - -DSIWriter (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Interface DSIWriter

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/NodeDecoder.html b/docs/javadoc/org/iot/dsa/io/NodeDecoder.html deleted file mode 100644 index 00a11b1b..00000000 --- a/docs/javadoc/org/iot/dsa/io/NodeDecoder.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - -<<<<<<< HEAD - -NodeDecoder (dslink-core 0.19.0 API) - -======= - -NodeDecoder (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Class NodeDecoder

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/NodeEncoder.html b/docs/javadoc/org/iot/dsa/io/NodeEncoder.html deleted file mode 100644 index b3fa1222..00000000 --- a/docs/javadoc/org/iot/dsa/io/NodeEncoder.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - -<<<<<<< HEAD - -NodeEncoder (dslink-core 0.19.0 API) - -======= - -NodeEncoder (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io
-

Class NodeEncoder

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/AbstractJsonWriter.html b/docs/javadoc/org/iot/dsa/io/json/AbstractJsonWriter.html deleted file mode 100644 index 0ee1dd0c..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/AbstractJsonWriter.html +++ /dev/null @@ -1,714 +0,0 @@ - - - - -<<<<<<< HEAD - -AbstractJsonWriter (dslink-core 0.19.0 API) - -======= - -AbstractJsonWriter (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io.json
-

Class AbstractJsonWriter

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/JsonAppender.html b/docs/javadoc/org/iot/dsa/io/json/JsonAppender.html deleted file mode 100644 index 1e5696a4..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/JsonAppender.html +++ /dev/null @@ -1,642 +0,0 @@ - - - - -<<<<<<< HEAD - -JsonAppender (dslink-core 0.19.0 API) - -======= - -JsonAppender (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io.json
-

Class JsonAppender

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/JsonConstants.html b/docs/javadoc/org/iot/dsa/io/json/JsonConstants.html deleted file mode 100644 index 34d9f955..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/JsonConstants.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - -<<<<<<< HEAD - -JsonConstants (dslink-core 0.19.0 API) - -======= - -JsonConstants (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io.json
-

Interface JsonConstants

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/JsonReader.html b/docs/javadoc/org/iot/dsa/io/json/JsonReader.html deleted file mode 100644 index fd82d16f..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/JsonReader.html +++ /dev/null @@ -1,526 +0,0 @@ - - - - -<<<<<<< HEAD - -JsonReader (dslink-core 0.19.0 API) - -======= - -JsonReader (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io.json
-

Class JsonReader

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/JsonWriter.html b/docs/javadoc/org/iot/dsa/io/json/JsonWriter.html deleted file mode 100644 index 16110a2c..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/JsonWriter.html +++ /dev/null @@ -1,636 +0,0 @@ - - - - -<<<<<<< HEAD - -JsonWriter (dslink-core 0.19.0 API) - -======= - -JsonWriter (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.io.json
-

Class JsonWriter

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/package-frame.html b/docs/javadoc/org/iot/dsa/io/json/package-frame.html deleted file mode 100644 index 915976dd..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/package-frame.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.io.json (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.io.json (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.io.json

-
-

Interfaces

- -

Classes

- -
- - diff --git a/docs/javadoc/org/iot/dsa/io/json/package-summary.html b/docs/javadoc/org/iot/dsa/io/json/package-summary.html deleted file mode 100644 index 88635467..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/package-summary.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.io.json (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.io.json (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.io.json

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/json/package-tree.html b/docs/javadoc/org/iot/dsa/io/json/package-tree.html deleted file mode 100644 index cc859f1c..00000000 --- a/docs/javadoc/org/iot/dsa/io/json/package-tree.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.io.json Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.io.json Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.io.json

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/package-frame.html b/docs/javadoc/org/iot/dsa/io/package-frame.html deleted file mode 100644 index 6eb7bc55..00000000 --- a/docs/javadoc/org/iot/dsa/io/package-frame.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.io (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.io (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.io

-
-

Interfaces

- -

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/io/package-summary.html b/docs/javadoc/org/iot/dsa/io/package-summary.html deleted file mode 100644 index d1374d5c..00000000 --- a/docs/javadoc/org/iot/dsa/io/package-summary.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.io (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.io (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.io

-
-
Node serialization and streaming abstraction for JSON and MsgPack.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa.io Description

-
Node serialization and streaming abstraction for JSON and MsgPack.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/io/package-tree.html b/docs/javadoc/org/iot/dsa/io/package-tree.html deleted file mode 100644 index 12b6eaaf..00000000 --- a/docs/javadoc/org/iot/dsa/io/package-tree.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.io Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.io Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.io

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/AsyncLogHandler.html b/docs/javadoc/org/iot/dsa/logging/AsyncLogHandler.html deleted file mode 100644 index 6ba0500d..00000000 --- a/docs/javadoc/org/iot/dsa/logging/AsyncLogHandler.html +++ /dev/null @@ -1,489 +0,0 @@ - - - - -<<<<<<< HEAD - -AsyncLogHandler (dslink-core 0.19.0 API) - -======= - -AsyncLogHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.logging
-

Class AsyncLogHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/DSILevels.html b/docs/javadoc/org/iot/dsa/logging/DSILevels.html deleted file mode 100644 index 2b06667c..00000000 --- a/docs/javadoc/org/iot/dsa/logging/DSILevels.html +++ /dev/null @@ -1,497 +0,0 @@ - - - - -<<<<<<< HEAD - -DSILevels (dslink-core 0.19.0 API) - -======= - -DSILevels (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.logging
-

Interface DSILevels

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/DSLogger.html b/docs/javadoc/org/iot/dsa/logging/DSLogger.html deleted file mode 100644 index a7a47cbe..00000000 --- a/docs/javadoc/org/iot/dsa/logging/DSLogger.html +++ /dev/null @@ -1,747 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLogger (dslink-core 0.19.0 API) - -======= - -DSLogger (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.logging
-

Class DSLogger

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/DSLogging.html b/docs/javadoc/org/iot/dsa/logging/DSLogging.html deleted file mode 100644 index 8e69f2db..00000000 --- a/docs/javadoc/org/iot/dsa/logging/DSLogging.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLogging (dslink-core 0.19.0 API) - -======= - -DSLogging (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.logging
-

Class DSLogging

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/FileLogHandler.html b/docs/javadoc/org/iot/dsa/logging/FileLogHandler.html deleted file mode 100644 index e26c7db5..00000000 --- a/docs/javadoc/org/iot/dsa/logging/FileLogHandler.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - -<<<<<<< HEAD - -FileLogHandler (dslink-core 0.19.0 API) - -======= - -FileLogHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.logging
-

Class FileLogHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/PrintStreamLogHandler.html b/docs/javadoc/org/iot/dsa/logging/PrintStreamLogHandler.html deleted file mode 100644 index f9ef05c4..00000000 --- a/docs/javadoc/org/iot/dsa/logging/PrintStreamLogHandler.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - -<<<<<<< HEAD - -PrintStreamLogHandler (dslink-core 0.19.0 API) - -======= - -PrintStreamLogHandler (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.logging
-

Class PrintStreamLogHandler

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/package-frame.html b/docs/javadoc/org/iot/dsa/logging/package-frame.html deleted file mode 100644 index ce8b56f0..00000000 --- a/docs/javadoc/org/iot/dsa/logging/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.logging (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.logging (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.logging

-
-

Interfaces

- -

Classes

- -
- - diff --git a/docs/javadoc/org/iot/dsa/logging/package-summary.html b/docs/javadoc/org/iot/dsa/logging/package-summary.html deleted file mode 100644 index f35f3019..00000000 --- a/docs/javadoc/org/iot/dsa/logging/package-summary.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.logging (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.logging (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.logging

-
-
Async handler for Java Util Logging that also manages log backups.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa.logging Description

-
Async handler for Java Util Logging that also manages log backups.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/logging/package-tree.html b/docs/javadoc/org/iot/dsa/logging/package-tree.html deleted file mode 100644 index 2cca607b..00000000 --- a/docs/javadoc/org/iot/dsa/logging/package-tree.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.logging Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.logging Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.logging

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSBool.html b/docs/javadoc/org/iot/dsa/node/DSBool.html deleted file mode 100644 index 288d2089..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSBool.html +++ /dev/null @@ -1,626 +0,0 @@ - - - - -<<<<<<< HEAD - -DSBool (dslink-core 0.19.0 API) - -======= - -DSBool (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSBool

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSBytes.html b/docs/javadoc/org/iot/dsa/node/DSBytes.html deleted file mode 100644 index 23dff200..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSBytes.html +++ /dev/null @@ -1,1171 +0,0 @@ - - - - -<<<<<<< HEAD - -DSBytes (dslink-core 0.19.0 API) - -======= - -DSBytes (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSBytes

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSDouble.html b/docs/javadoc/org/iot/dsa/node/DSDouble.html deleted file mode 100644 index 8ff02c2d..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSDouble.html +++ /dev/null @@ -1,706 +0,0 @@ - - - - -<<<<<<< HEAD - -DSDouble (dslink-core 0.19.0 API) - -======= - -DSDouble (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSDouble

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSElement.html b/docs/javadoc/org/iot/dsa/node/DSElement.html deleted file mode 100644 index 1b9e44d6..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSElement.html +++ /dev/null @@ -1,892 +0,0 @@ - - - - -<<<<<<< HEAD - -DSElement (dslink-core 0.19.0 API) - -======= - -DSElement (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSElement

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSElementType.html b/docs/javadoc/org/iot/dsa/node/DSElementType.html deleted file mode 100644 index cde4855b..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSElementType.html +++ /dev/null @@ -1,439 +0,0 @@ - - - - -<<<<<<< HEAD - -DSElementType (dslink-core 0.19.0 API) - -======= - -DSElementType (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Enum DSElementType

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSFlexEnum.html b/docs/javadoc/org/iot/dsa/node/DSFlexEnum.html deleted file mode 100644 index 0c5dfcda..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSFlexEnum.html +++ /dev/null @@ -1,614 +0,0 @@ - - - - -<<<<<<< HEAD - -DSFlexEnum (dslink-core 0.19.0 API) - -======= - -DSFlexEnum (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSFlexEnum

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSFloat.html b/docs/javadoc/org/iot/dsa/node/DSFloat.html deleted file mode 100644 index 7bc4bd2b..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSFloat.html +++ /dev/null @@ -1,680 +0,0 @@ - - - - -<<<<<<< HEAD - -DSFloat (dslink-core 0.19.0 API) - -======= - -DSFloat (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSFloat

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSGroup.html b/docs/javadoc/org/iot/dsa/node/DSGroup.html deleted file mode 100644 index 735c791e..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSGroup.html +++ /dev/null @@ -1,844 +0,0 @@ - - - - -<<<<<<< HEAD - -DSGroup (dslink-core 0.19.0 API) - -======= - -DSGroup (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSGroup

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIBoolean.html b/docs/javadoc/org/iot/dsa/node/DSIBoolean.html deleted file mode 100644 index 4d0c14e5..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIBoolean.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIBoolean (dslink-core 0.19.0 API) - -======= - -DSIBoolean (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIBoolean

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIEnum.html b/docs/javadoc/org/iot/dsa/node/DSIEnum.html deleted file mode 100644 index 62561890..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIEnum.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIEnum (dslink-core 0.19.0 API) - -======= - -DSIEnum (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIEnum

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIMetadata.html b/docs/javadoc/org/iot/dsa/node/DSIMetadata.html deleted file mode 100644 index 6156658c..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIMetadata.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIMetadata (dslink-core 0.19.0 API) - -======= - -DSIMetadata (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIMetadata

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSINumber.html b/docs/javadoc/org/iot/dsa/node/DSINumber.html deleted file mode 100644 index adec5112..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSINumber.html +++ /dev/null @@ -1,365 +0,0 @@ - - - - -<<<<<<< HEAD - -DSINumber (dslink-core 0.19.0 API) - -======= - -DSINumber (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSINumber

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIObject.html b/docs/javadoc/org/iot/dsa/node/DSIObject.html deleted file mode 100644 index 0ce9ffa4..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIObject.html +++ /dev/null @@ -1,272 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIObject (dslink-core 0.19.0 API) - -======= - -DSIObject (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIObject

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIStatus.html b/docs/javadoc/org/iot/dsa/node/DSIStatus.html deleted file mode 100644 index 8bf1aedc..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIStatus.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIStatus (dslink-core 0.19.0 API) - -======= - -DSIStatus (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIStatus

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIStorable.html b/docs/javadoc/org/iot/dsa/node/DSIStorable.html deleted file mode 100644 index cd669805..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIStorable.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - -<<<<<<< HEAD:docs/javadoc/org/iot/dsa/node/DSIStorable.html - -DSIStorable (dslink-core 0.19.0 API) - -======= - -DSIStorable (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9:docs/javadoc/org/iot/dsa/node/DSIStorable.html - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIStorable

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSIValue.html b/docs/javadoc/org/iot/dsa/node/DSIValue.html deleted file mode 100644 index 807d23b0..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSIValue.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIValue (dslink-core 0.19.0 API) - -======= - -DSIValue (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Interface DSIValue

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSInfo.html b/docs/javadoc/org/iot/dsa/node/DSInfo.html deleted file mode 100644 index fefedad3..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSInfo.html +++ /dev/null @@ -1,931 +0,0 @@ - - - - -<<<<<<< HEAD - -DSInfo (dslink-core 0.19.0 API) - -======= - -DSInfo (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSInfo

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSInt.html b/docs/javadoc/org/iot/dsa/node/DSInt.html deleted file mode 100644 index 4ff42675..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSInt.html +++ /dev/null @@ -1,679 +0,0 @@ - - - - -<<<<<<< HEAD - -DSInt (dslink-core 0.19.0 API) - -======= - -DSInt (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSInt

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSJavaEnum.html b/docs/javadoc/org/iot/dsa/node/DSJavaEnum.html deleted file mode 100644 index bcb7c1cd..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSJavaEnum.html +++ /dev/null @@ -1,599 +0,0 @@ - - - - -<<<<<<< HEAD - -DSJavaEnum (dslink-core 0.19.0 API) - -======= - -DSJavaEnum (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSJavaEnum

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSList.html b/docs/javadoc/org/iot/dsa/node/DSList.html deleted file mode 100644 index f799c5cf..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSList.html +++ /dev/null @@ -1,985 +0,0 @@ - - - - -<<<<<<< HEAD - -DSList (dslink-core 0.19.0 API) - -======= - -DSList (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSList

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSLong.html b/docs/javadoc/org/iot/dsa/node/DSLong.html deleted file mode 100644 index 1e179805..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSLong.html +++ /dev/null @@ -1,671 +0,0 @@ - - - - -<<<<<<< HEAD - -DSLong (dslink-core 0.19.0 API) - -======= - -DSLong (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSLong

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSMap.Entry.html b/docs/javadoc/org/iot/dsa/node/DSMap.Entry.html deleted file mode 100644 index 36268460..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSMap.Entry.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - -<<<<<<< HEAD - -DSMap.Entry (dslink-core 0.19.0 API) - -======= - -DSMap.Entry (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSMap.Entry

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSMap.html b/docs/javadoc/org/iot/dsa/node/DSMap.html deleted file mode 100644 index 632e9ed1..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSMap.html +++ /dev/null @@ -1,1234 +0,0 @@ - - - - -<<<<<<< HEAD - -DSMap (dslink-core 0.19.0 API) - -======= - -DSMap (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSMap

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSMetadata.html b/docs/javadoc/org/iot/dsa/node/DSMetadata.html deleted file mode 100644 index 79a3c4e2..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSMetadata.html +++ /dev/null @@ -1,1092 +0,0 @@ - - - - -<<<<<<< HEAD - -DSMetadata (dslink-core 0.19.0 API) - -======= - -DSMetadata (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSMetadata

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSNode.html b/docs/javadoc/org/iot/dsa/node/DSNode.html deleted file mode 100644 index 9809d734..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSNode.html +++ /dev/null @@ -1,1926 +0,0 @@ - - - - -<<<<<<< HEAD - -DSNode (dslink-core 0.19.0 API) - -======= - -DSNode (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSNode

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSNull.html b/docs/javadoc/org/iot/dsa/node/DSNull.html deleted file mode 100644 index 60f62994..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSNull.html +++ /dev/null @@ -1,466 +0,0 @@ - - - - -<<<<<<< HEAD - -DSNull (dslink-core 0.19.0 API) - -======= - -DSNull (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSNull

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSPath.html b/docs/javadoc/org/iot/dsa/node/DSPath.html deleted file mode 100644 index 64adb3cb..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSPath.html +++ /dev/null @@ -1,526 +0,0 @@ - - - - -<<<<<<< HEAD - -DSPath (dslink-core 0.19.0 API) - -======= - -DSPath (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSPath

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSRegistry.html b/docs/javadoc/org/iot/dsa/node/DSRegistry.html deleted file mode 100644 index 3d891c34..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSRegistry.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - -<<<<<<< HEAD - -DSRegistry (dslink-core 0.19.0 API) - -======= - -DSRegistry (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSRegistry

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSStatus.html b/docs/javadoc/org/iot/dsa/node/DSStatus.html deleted file mode 100644 index c27c0f17..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSStatus.html +++ /dev/null @@ -1,1578 +0,0 @@ - - - - -<<<<<<< HEAD - -DSStatus (dslink-core 0.19.0 API) - -======= - -DSStatus (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSStatus

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSString.html b/docs/javadoc/org/iot/dsa/node/DSString.html deleted file mode 100644 index 5a16594f..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSString.html +++ /dev/null @@ -1,501 +0,0 @@ - - - - -<<<<<<< HEAD - -DSString (dslink-core 0.19.0 API) - -======= - -DSString (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSString

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSValue.html b/docs/javadoc/org/iot/dsa/node/DSValue.html deleted file mode 100644 index debd4e2b..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSValue.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - -<<<<<<< HEAD - -DSValue (dslink-core 0.19.0 API) - -======= - -DSValue (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSValue

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSValueNode.html b/docs/javadoc/org/iot/dsa/node/DSValueNode.html deleted file mode 100644 index 4b64e77e..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSValueNode.html +++ /dev/null @@ -1,480 +0,0 @@ - - - - -<<<<<<< HEAD - -DSValueNode (dslink-core 0.19.0 API) - -======= - -DSValueNode (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Class DSValueNode

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/DSValueType.html b/docs/javadoc/org/iot/dsa/node/DSValueType.html deleted file mode 100644 index 5f7afb50..00000000 --- a/docs/javadoc/org/iot/dsa/node/DSValueType.html +++ /dev/null @@ -1,440 +0,0 @@ - - - - -<<<<<<< HEAD - -DSValueType (dslink-core 0.19.0 API) - -======= - -DSValueType (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node
-

Enum DSValueType

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/ActionInvocation.html b/docs/javadoc/org/iot/dsa/node/action/ActionInvocation.html deleted file mode 100644 index 853f1793..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/ActionInvocation.html +++ /dev/null @@ -1,386 +0,0 @@ - - - - -<<<<<<< HEAD - -ActionInvocation (dslink-core 0.19.0 API) - -======= - -ActionInvocation (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Interface ActionInvocation

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/ActionResult.html b/docs/javadoc/org/iot/dsa/node/action/ActionResult.html deleted file mode 100644 index 30f3ee21..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/ActionResult.html +++ /dev/null @@ -1,263 +0,0 @@ - - - - -<<<<<<< HEAD - -ActionResult (dslink-core 0.19.0 API) - -======= - -ActionResult (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Interface ActionResult

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/ActionSpec.ResultType.html b/docs/javadoc/org/iot/dsa/node/action/ActionSpec.ResultType.html deleted file mode 100644 index e6db2a80..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/ActionSpec.ResultType.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - -<<<<<<< HEAD - -ActionSpec.ResultType (dslink-core 0.19.0 API) - -======= - -ActionSpec.ResultType (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Enum ActionSpec.ResultType

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/ActionSpec.html b/docs/javadoc/org/iot/dsa/node/action/ActionSpec.html deleted file mode 100644 index a1aed6fe..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/ActionSpec.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - -<<<<<<< HEAD - -ActionSpec (dslink-core 0.19.0 API) - -======= - -ActionSpec (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Interface ActionSpec

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/ActionTable.html b/docs/javadoc/org/iot/dsa/node/action/ActionTable.html deleted file mode 100644 index 7d3a4a02..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/ActionTable.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - -<<<<<<< HEAD - -ActionTable (dslink-core 0.19.0 API) - -======= - -ActionTable (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Interface ActionTable

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/ActionValues.html b/docs/javadoc/org/iot/dsa/node/action/ActionValues.html deleted file mode 100644 index be9be39a..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/ActionValues.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - -<<<<<<< HEAD - -ActionValues (dslink-core 0.19.0 API) - -======= - -ActionValues (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Interface ActionValues

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/DSAction.html b/docs/javadoc/org/iot/dsa/node/action/DSAction.html deleted file mode 100644 index 33d9a3fe..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/DSAction.html +++ /dev/null @@ -1,779 +0,0 @@ - - - - -<<<<<<< HEAD - -DSAction (dslink-core 0.19.0 API) - -======= - -DSAction (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Class DSAction

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/DSActionValues.html b/docs/javadoc/org/iot/dsa/node/action/DSActionValues.html deleted file mode 100644 index a8b2a7ac..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/DSActionValues.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - -<<<<<<< HEAD - -DSActionValues (dslink-core 0.19.0 API) - -======= - -DSActionValues (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.action
-

Class DSActionValues

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/package-frame.html b/docs/javadoc/org/iot/dsa/node/action/package-frame.html deleted file mode 100644 index 1a116d6a..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/package-frame.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node.action (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node.action (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.node.action

-
-

Interfaces

- -

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/node/action/package-summary.html b/docs/javadoc/org/iot/dsa/node/action/package-summary.html deleted file mode 100644 index 9d6396e5..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/package-summary.html +++ /dev/null @@ -1,217 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node.action (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node.action (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.node.action

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/action/package-tree.html b/docs/javadoc/org/iot/dsa/node/action/package-tree.html deleted file mode 100644 index 7c04747c..00000000 --- a/docs/javadoc/org/iot/dsa/node/action/package-tree.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node.action Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node.action Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.node.action

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSIEvent.html b/docs/javadoc/org/iot/dsa/node/event/DSIEvent.html deleted file mode 100644 index 9234e587..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSIEvent.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIEvent (dslink-core 0.19.0 API) - -======= - -DSIEvent (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Interface DSIEvent

-
-
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSISubscriber.html b/docs/javadoc/org/iot/dsa/node/event/DSISubscriber.html deleted file mode 100644 index 65fa384b..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSISubscriber.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - -<<<<<<< HEAD - -DSISubscriber (dslink-core 0.19.0 API) - -======= - -DSISubscriber (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Interface DSISubscriber

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSInfoTopic.Event.html b/docs/javadoc/org/iot/dsa/node/event/DSInfoTopic.Event.html deleted file mode 100644 index 93dfb6c3..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSInfoTopic.Event.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - -<<<<<<< HEAD - -DSInfoTopic.Event (dslink-core 0.19.0 API) - -======= - -DSInfoTopic.Event (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Enum DSInfoTopic.Event

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSInfoTopic.html b/docs/javadoc/org/iot/dsa/node/event/DSInfoTopic.html deleted file mode 100644 index 5d749a96..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSInfoTopic.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - -<<<<<<< HEAD - -DSInfoTopic (dslink-core 0.19.0 API) - -======= - -DSInfoTopic (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Class DSInfoTopic

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSTopic.html b/docs/javadoc/org/iot/dsa/node/event/DSTopic.html deleted file mode 100644 index 80f1426a..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSTopic.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - -<<<<<<< HEAD - -DSTopic (dslink-core 0.19.0 API) - -======= - -DSTopic (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Class DSTopic

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSValueTopic.Event.html b/docs/javadoc/org/iot/dsa/node/event/DSValueTopic.Event.html deleted file mode 100644 index e03c535a..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSValueTopic.Event.html +++ /dev/null @@ -1,361 +0,0 @@ - - - - -<<<<<<< HEAD - -DSValueTopic.Event (dslink-core 0.19.0 API) - -======= - -DSValueTopic.Event (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Enum DSValueTopic.Event

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/DSValueTopic.html b/docs/javadoc/org/iot/dsa/node/event/DSValueTopic.html deleted file mode 100644 index 9221fd9b..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/DSValueTopic.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - -<<<<<<< HEAD - -DSValueTopic (dslink-core 0.19.0 API) - -======= - -DSValueTopic (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.node.event
-

Class DSValueTopic

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/package-frame.html b/docs/javadoc/org/iot/dsa/node/event/package-frame.html deleted file mode 100644 index a69d9d42..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/package-frame.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node.event (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node.event (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.node.event

-
-

Interfaces

- -

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/node/event/package-summary.html b/docs/javadoc/org/iot/dsa/node/event/package-summary.html deleted file mode 100644 index 7c7331aa..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/package-summary.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - -<<<<<<< HEAD:docs/javadoc/org/iot/dsa/node/event/package-summary.html - -org.iot.dsa.node.event (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node.event (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9:docs/javadoc/org/iot/dsa/node/event/package-summary.html - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.node.event

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/event/package-tree.html b/docs/javadoc/org/iot/dsa/node/event/package-tree.html deleted file mode 100644 index 85b83102..00000000 --- a/docs/javadoc/org/iot/dsa/node/event/package-tree.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - -<<<<<<< HEAD:docs/javadoc/org/iot/dsa/node/event/package-tree.html - -org.iot.dsa.node.event Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node.event Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9:docs/javadoc/org/iot/dsa/node/event/package-tree.html - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.node.event

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/package-frame.html b/docs/javadoc/org/iot/dsa/node/package-frame.html deleted file mode 100644 index 3f0ef9c1..00000000 --- a/docs/javadoc/org/iot/dsa/node/package-frame.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.node

-
-

Interfaces

- -

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/node/package-summary.html b/docs/javadoc/org/iot/dsa/node/package-summary.html deleted file mode 100644 index 40ec26bb..00000000 --- a/docs/javadoc/org/iot/dsa/node/package-summary.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.node

-
-
Persistent data model used to build the node tree of a link.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa.node Description

-
Persistent data model used to build the node tree of a link.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/node/package-tree.html b/docs/javadoc/org/iot/dsa/node/package-tree.html deleted file mode 100644 index d26a0860..00000000 --- a/docs/javadoc/org/iot/dsa/node/package-tree.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.node Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.node Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.node

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/package-frame.html b/docs/javadoc/org/iot/dsa/package-frame.html deleted file mode 100644 index 44aba552..00000000 --- a/docs/javadoc/org/iot/dsa/package-frame.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa (dslink-core 0.19.0 API) - -======= - -org.iot.dsa (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa

-
-

Classes

- -
- - diff --git a/docs/javadoc/org/iot/dsa/package-summary.html b/docs/javadoc/org/iot/dsa/package-summary.html deleted file mode 100644 index ef5191c1..00000000 --- a/docs/javadoc/org/iot/dsa/package-summary.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa (dslink-core 0.19.0 API) - -======= - -org.iot.dsa (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa

-
-
Use the DSRuntime thread pool and timers.
-
-

See: Description

-
-
- - - - -

Package org.iot.dsa Description

-
Use the DSRuntime thread pool and timers.
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/package-tree.html b/docs/javadoc/org/iot/dsa/package-tree.html deleted file mode 100644 index 8e90c86d..00000000 --- a/docs/javadoc/org/iot/dsa/package-tree.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSIPassword.html b/docs/javadoc/org/iot/dsa/security/DSIPassword.html deleted file mode 100644 index 51a7bc48..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSIPassword.html +++ /dev/null @@ -1,256 +0,0 @@ - - - - -<<<<<<< HEAD - -DSIPassword (dslink-core 0.19.0 API) - -======= - -DSIPassword (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Interface DSIPassword

-
-
-
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSKeys.Signer.html b/docs/javadoc/org/iot/dsa/security/DSKeys.Signer.html deleted file mode 100644 index b2833cb7..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSKeys.Signer.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - -<<<<<<< HEAD - -DSKeys.Signer (dslink-core 0.19.0 API) - -======= - -DSKeys.Signer (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Class DSKeys.Signer

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSKeys.Verifier.html b/docs/javadoc/org/iot/dsa/security/DSKeys.Verifier.html deleted file mode 100644 index 44ec0a3b..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSKeys.Verifier.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - -<<<<<<< HEAD - -DSKeys.Verifier (dslink-core 0.19.0 API) - -======= - -DSKeys.Verifier (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Class DSKeys.Verifier

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSKeys.html b/docs/javadoc/org/iot/dsa/security/DSKeys.html deleted file mode 100644 index e375b38c..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSKeys.html +++ /dev/null @@ -1,753 +0,0 @@ - - - - -<<<<<<< HEAD - -DSKeys (dslink-core 0.19.0 API) - -======= - -DSKeys (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Class DSKeys

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSPasswordAes.html b/docs/javadoc/org/iot/dsa/security/DSPasswordAes.html deleted file mode 100644 index be05858f..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSPasswordAes.html +++ /dev/null @@ -1,625 +0,0 @@ - - - - -<<<<<<< HEAD - -DSPasswordAes (dslink-core 0.19.0 API) - -======= - -DSPasswordAes (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Class DSPasswordAes

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSPasswordSha256.html b/docs/javadoc/org/iot/dsa/security/DSPasswordSha256.html deleted file mode 100644 index 48bf4666..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSPasswordSha256.html +++ /dev/null @@ -1,605 +0,0 @@ - - - - -<<<<<<< HEAD - -DSPasswordSha256 (dslink-core 0.19.0 API) - -======= - -DSPasswordSha256 (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Class DSPasswordSha256

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/DSPermission.html b/docs/javadoc/org/iot/dsa/security/DSPermission.html deleted file mode 100644 index 0c9fc7bc..00000000 --- a/docs/javadoc/org/iot/dsa/security/DSPermission.html +++ /dev/null @@ -1,510 +0,0 @@ - - - - -<<<<<<< HEAD - -DSPermission (dslink-core 0.19.0 API) - -======= - -DSPermission (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.security
-

Enum DSPermission

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/package-frame.html b/docs/javadoc/org/iot/dsa/security/package-frame.html deleted file mode 100644 index 11e9bbb5..00000000 --- a/docs/javadoc/org/iot/dsa/security/package-frame.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.security (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.security (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.security

-
-

Interfaces

- -

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/security/package-summary.html b/docs/javadoc/org/iot/dsa/security/package-summary.html deleted file mode 100644 index 06f54779..00000000 --- a/docs/javadoc/org/iot/dsa/security/package-summary.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.security (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.security (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.security

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/security/package-tree.html b/docs/javadoc/org/iot/dsa/security/package-tree.html deleted file mode 100644 index b46025e5..00000000 --- a/docs/javadoc/org/iot/dsa/security/package-tree.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.security Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.security Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.security

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/time/DSDateTime.html b/docs/javadoc/org/iot/dsa/time/DSDateTime.html deleted file mode 100644 index 9911be24..00000000 --- a/docs/javadoc/org/iot/dsa/time/DSDateTime.html +++ /dev/null @@ -1,488 +0,0 @@ - - - - -<<<<<<< HEAD - -DSDateTime (dslink-core 0.19.0 API) - -======= - -DSDateTime (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.time
-

Class DSDateTime

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/time/DSInterval.html b/docs/javadoc/org/iot/dsa/time/DSInterval.html deleted file mode 100644 index e6777b54..00000000 --- a/docs/javadoc/org/iot/dsa/time/DSInterval.html +++ /dev/null @@ -1,652 +0,0 @@ - - - - -<<<<<<< HEAD - -DSInterval (dslink-core 0.19.0 API) - -======= - -DSInterval (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.time
-

Enum DSInterval

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/time/DSTime.html b/docs/javadoc/org/iot/dsa/time/DSTime.html deleted file mode 100644 index 1fadeb38..00000000 --- a/docs/javadoc/org/iot/dsa/time/DSTime.html +++ /dev/null @@ -1,1524 +0,0 @@ - - - - -<<<<<<< HEAD - -DSTime (dslink-core 0.19.0 API) - -======= - -DSTime (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.time
-

Class DSTime

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/time/package-frame.html b/docs/javadoc/org/iot/dsa/time/package-frame.html deleted file mode 100644 index 3b090b6b..00000000 --- a/docs/javadoc/org/iot/dsa/time/package-frame.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.time (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.time (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.time

-
-

Classes

- -

Enums

- -
- - diff --git a/docs/javadoc/org/iot/dsa/time/package-summary.html b/docs/javadoc/org/iot/dsa/time/package-summary.html deleted file mode 100644 index 170d39b0..00000000 --- a/docs/javadoc/org/iot/dsa/time/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.time (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.time (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.time

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/time/package-tree.html b/docs/javadoc/org/iot/dsa/time/package-tree.html deleted file mode 100644 index fd96dfa3..00000000 --- a/docs/javadoc/org/iot/dsa/time/package-tree.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.time Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.time Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.time

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/util/DSException.html b/docs/javadoc/org/iot/dsa/util/DSException.html deleted file mode 100644 index 5bc1848c..00000000 --- a/docs/javadoc/org/iot/dsa/util/DSException.html +++ /dev/null @@ -1,504 +0,0 @@ - - - - -<<<<<<< HEAD - -DSException (dslink-core 0.19.0 API) - -======= - -DSException (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.util
-

Class DSException

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/util/DSUtil.html b/docs/javadoc/org/iot/dsa/util/DSUtil.html deleted file mode 100644 index d342ba24..00000000 --- a/docs/javadoc/org/iot/dsa/util/DSUtil.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - -<<<<<<< HEAD - -DSUtil (dslink-core 0.19.0 API) - -======= - -DSUtil (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - - -
-
org.iot.dsa.util
-

Class DSUtil

-
-
- -
- -
-
- -
-
- -
-
- - -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/util/package-frame.html b/docs/javadoc/org/iot/dsa/util/package-frame.html deleted file mode 100644 index 68806b69..00000000 --- a/docs/javadoc/org/iot/dsa/util/package-frame.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.util (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.util (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -

org.iot.dsa.util

-
-

Classes

- -

Exceptions

- -
- - diff --git a/docs/javadoc/org/iot/dsa/util/package-summary.html b/docs/javadoc/org/iot/dsa/util/package-summary.html deleted file mode 100644 index 880209a9..00000000 --- a/docs/javadoc/org/iot/dsa/util/package-summary.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.util (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.util (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Package org.iot.dsa.util

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/org/iot/dsa/util/package-tree.html b/docs/javadoc/org/iot/dsa/util/package-tree.html deleted file mode 100644 index 1a74a9fd..00000000 --- a/docs/javadoc/org/iot/dsa/util/package-tree.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - -<<<<<<< HEAD - -org.iot.dsa.util Class Hierarchy (dslink-core 0.19.0 API) - -======= - -org.iot.dsa.util Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For Package org.iot.dsa.util

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/overview-frame.html b/docs/javadoc/overview-frame.html deleted file mode 100644 index b04b5ada..00000000 --- a/docs/javadoc/overview-frame.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - -<<<<<<< HEAD - -Overview List (dslink-core 0.19.0 API) - -======= - -Overview List (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - -
All Classes
-
-

Packages

- -
-

 

- - diff --git a/docs/javadoc/overview-summary.html b/docs/javadoc/overview-summary.html deleted file mode 100644 index fe932ade..00000000 --- a/docs/javadoc/overview-summary.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - -<<<<<<< HEAD - -Overview (dslink-core 0.19.0 API) - -======= - -Overview (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-<<<<<<< HEAD -

dslink-core 0.19.0 API

-======= -

dslink-core 0.20.0 API

->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Packages 
PackageDescription
org.iot.dsa -
Use the DSRuntime thread pool and timers.
-
org.iot.dsa.dslink -
DSLink is the main entry point for an application.
-
org.iot.dsa.dslink.requester -
API for implementing requesters without having to modeling everything in the node tree.
-
org.iot.dsa.dslink.responder -
API for implementing responders without having modeling everything in the node tree.
-
org.iot.dsa.io -
Node serialization and streaming abstraction for JSON and MsgPack.
-
org.iot.dsa.io.json 
org.iot.dsa.logging -
Async handler for Java Util Logging that also manages log backups.
-
org.iot.dsa.node -
Persistent data model used to build the node tree of a link.
-
org.iot.dsa.node.action 
org.iot.dsa.node.event 
org.iot.dsa.security 
org.iot.dsa.time 
org.iot.dsa.util 
-
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/overview-tree.html b/docs/javadoc/overview-tree.html deleted file mode 100644 index fc8eeb92..00000000 --- a/docs/javadoc/overview-tree.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - -<<<<<<< HEAD - -Class Hierarchy (dslink-core 0.19.0 API) - -======= - -Class Hierarchy (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Hierarchy For All Packages

-Package Hierarchies: - -
-
-

Class Hierarchy

- -

Interface Hierarchy

- -

Enum Hierarchy

- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/package-list b/docs/javadoc/package-list deleted file mode 100644 index 45c7b2dc..00000000 --- a/docs/javadoc/package-list +++ /dev/null @@ -1,13 +0,0 @@ -org.iot.dsa -org.iot.dsa.dslink -org.iot.dsa.dslink.requester -org.iot.dsa.dslink.responder -org.iot.dsa.io -org.iot.dsa.io.json -org.iot.dsa.logging -org.iot.dsa.node -org.iot.dsa.node.action -org.iot.dsa.node.event -org.iot.dsa.security -org.iot.dsa.time -org.iot.dsa.util diff --git a/docs/javadoc/script.js b/docs/javadoc/script.js deleted file mode 100644 index b3463569..00000000 --- a/docs/javadoc/script.js +++ /dev/null @@ -1,30 +0,0 @@ -function show(type) -{ - count = 0; - for (var key in methods) { - var row = document.getElementById(key); - if ((methods[key] & type) != 0) { - row.style.display = ''; - row.className = (count++ % 2) ? rowColor : altColor; - } - else - row.style.display = 'none'; - } - updateTabs(type); -} - -function updateTabs(type) -{ - for (var value in tabs) { - var sNode = document.getElementById(tabs[value][0]); - var spanNode = sNode.firstChild; - if (value == type) { - sNode.className = activeTableTab; - spanNode.innerHTML = tabs[value][1]; - } - else { - sNode.className = tableTab; - spanNode.innerHTML = "" + tabs[value][1] + ""; - } - } -} diff --git a/docs/javadoc/serialized-form.html b/docs/javadoc/serialized-form.html deleted file mode 100644 index f81c9d35..00000000 --- a/docs/javadoc/serialized-form.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - -<<<<<<< HEAD - -Serialized Form (dslink-core 0.19.0 API) - -======= - -Serialized Form (dslink-core 0.20.0 API) - ->>>>>>> 22064982f1faddb35f2da7c8a183dbbc8602cbe9 - - - - - - - -
- - -
Skip navigation links
- - - - -
- - -
-

Serialized Form

-
-
- -
- -
- - -
Skip navigation links
- - - - -
- - - - diff --git a/docs/javadoc/stylesheet.css b/docs/javadoc/stylesheet.css deleted file mode 100644 index cebb4fd8..00000000 --- a/docs/javadoc/stylesheet.css +++ /dev/null @@ -1,574 +0,0 @@ -/* Javadoc style sheet */ -/* -Overall document style -*/ - -@import url('resources/fonts/dejavu.css'); - -body { - background-color:#ffffff; - color:#353833; - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:14px; - margin:0; -} -a:link, a:visited { - text-decoration:none; - color:#4A6782; -} -a:hover, a:focus { - text-decoration:none; - color:#bb7a2a; -} -a:active { - text-decoration:none; - color:#4A6782; -} -a[name] { - color:#353833; -} -a[name]:hover { - text-decoration:none; - color:#353833; -} -pre { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; -} -h1 { - font-size:20px; -} -h2 { - font-size:18px; -} -h3 { - font-size:16px; - font-style:italic; -} -h4 { - font-size:13px; -} -h5 { - font-size:12px; -} -h6 { - font-size:11px; -} -ul { - list-style-type:disc; -} -code, tt { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; - margin-top:8px; - line-height:1.4em; -} -dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; -} -table tr td dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - vertical-align:top; - padding-top:4px; -} -sup { - font-size:8px; -} -/* -Document title and Copyright styles -*/ -.clear { - clear:both; - height:0px; - overflow:hidden; -} -.aboutLanguage { - float:right; - padding:0px 21px; - font-size:11px; - z-index:200; - margin-top:-9px; -} -.legalCopy { - margin-left:.5em; -} -.bar a, .bar a:link, .bar a:visited, .bar a:active { - color:#FFFFFF; - text-decoration:none; -} -.bar a:hover, .bar a:focus { - color:#bb7a2a; -} -.tab { - background-color:#0066FF; - color:#ffffff; - padding:8px; - width:5em; - font-weight:bold; -} -/* -Navigation bar styles -*/ -.bar { - background-color:#4D7A97; - color:#FFFFFF; - padding:.8em .5em .4em .8em; - height:auto;/*height:1.8em;*/ - font-size:11px; - margin:0; -} -.topNav { - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.bottomNav { - margin-top:10px; - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.subNav { - background-color:#dee3e9; - float:left; - width:100%; - overflow:hidden; - font-size:12px; -} -.subNav div { - clear:left; - float:left; - padding:0 0 5px 6px; - text-transform:uppercase; -} -ul.navList, ul.subNavList { - float:left; - margin:0 25px 0 0; - padding:0; -} -ul.navList li{ - list-style:none; - float:left; - padding: 5px 6px; - text-transform:uppercase; -} -ul.subNavList li{ - list-style:none; - float:left; -} -.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { - color:#FFFFFF; - text-decoration:none; - text-transform:uppercase; -} -.topNav a:hover, .bottomNav a:hover { - text-decoration:none; - color:#bb7a2a; - text-transform:uppercase; -} -.navBarCell1Rev { - background-color:#F8981D; - color:#253441; - margin: auto 5px; -} -.skipNav { - position:absolute; - top:auto; - left:-9999px; - overflow:hidden; -} -/* -Page header and footer styles -*/ -.header, .footer { - clear:both; - margin:0 20px; - padding:5px 0 0 0; -} -.indexHeader { - margin:10px; - position:relative; -} -.indexHeader span{ - margin-right:15px; -} -.indexHeader h1 { - font-size:13px; -} -.title { - color:#2c4557; - margin:10px 0; -} -.subTitle { - margin:5px 0 0 0; -} -.header ul { - margin:0 0 15px 0; - padding:0; -} -.footer ul { - margin:20px 0 5px 0; -} -.header ul li, .footer ul li { - list-style:none; - font-size:13px; -} -/* -Heading styles -*/ -div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList ul.blockList li.blockList h3 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList li.blockList h3 { - padding:0; - margin:15px 0; -} -ul.blockList li.blockList h2 { - padding:0px 0 20px 0; -} -/* -Page layout container styles -*/ -.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { - clear:both; - padding:10px 20px; - position:relative; -} -.indexContainer { - margin:10px; - position:relative; - font-size:12px; -} -.indexContainer h2 { - font-size:13px; - padding:0 0 3px 0; -} -.indexContainer ul { - margin:0; - padding:0; -} -.indexContainer ul li { - list-style:none; - padding-top:2px; -} -.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { - font-size:12px; - font-weight:bold; - margin:10px 0 0 0; - color:#4E4E4E; -} -.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { - margin:5px 0 10px 0px; - font-size:14px; - font-family:'DejaVu Sans Mono',monospace; -} -.serializedFormContainer dl.nameValue dt { - margin-left:1px; - font-size:1.1em; - display:inline; - font-weight:bold; -} -.serializedFormContainer dl.nameValue dd { - margin:0 0 0 1px; - font-size:1.1em; - display:inline; -} -/* -List styles -*/ -ul.horizontal li { - display:inline; - font-size:0.9em; -} -ul.inheritance { - margin:0; - padding:0; -} -ul.inheritance li { - display:inline; - list-style:none; -} -ul.inheritance li ul.inheritance { - margin-left:15px; - padding-left:15px; - padding-top:1px; -} -ul.blockList, ul.blockListLast { - margin:10px 0 10px 0; - padding:0; -} -ul.blockList li.blockList, ul.blockListLast li.blockList { - list-style:none; - margin-bottom:15px; - line-height:1.4; -} -ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { - padding:0px 20px 5px 10px; - border:1px solid #ededed; - background-color:#f8f8f8; -} -ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { - padding:0 0 5px 8px; - background-color:#ffffff; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { - margin-left:0; - padding-left:0; - padding-bottom:15px; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { - list-style:none; - border-bottom:none; - padding-bottom:0; -} -table tr td dl, table tr td dl dt, table tr td dl dd { - margin-top:0; - margin-bottom:1px; -} -/* -Table styles -*/ -.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { - width:100%; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; -} -.overviewSummary, .memberSummary { - padding:0px; -} -.overviewSummary caption, .memberSummary caption, .typeSummary caption, -.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { - position:relative; - text-align:left; - background-repeat:no-repeat; - color:#253441; - font-weight:bold; - clear:none; - overflow:hidden; - padding:0px; - padding-top:10px; - padding-left:1px; - margin:0px; - white-space:pre; -} -.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, -.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, -.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, -.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, -.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, -.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, -.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, -.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { - color:#FFFFFF; -} -.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, -.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - padding-bottom:7px; - display:inline-block; - float:left; - background-color:#F8981D; - border: none; - height:16px; -} -.memberSummary caption span.activeTableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#F8981D; - height:16px; -} -.memberSummary caption span.tableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#4D7A97; - height:16px; -} -.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { - padding-top:0px; - padding-left:0px; - padding-right:0px; - background-image:none; - float:none; - display:inline; -} -.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, -.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { - display:none; - width:5px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .activeTableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .tableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - background-color:#4D7A97; - float:left; - -} -.overviewSummary td, .memberSummary td, .typeSummary td, -.useSummary td, .constantsSummary td, .deprecatedSummary td { - text-align:left; - padding:0px 0px 12px 10px; - width:100%; -} -th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, -td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ - vertical-align:top; - padding-right:0px; - padding-top:8px; - padding-bottom:3px; -} -th.colFirst, th.colLast, th.colOne, .constantsSummary th { - background:#dee3e9; - text-align:left; - padding:8px 3px 3px 7px; -} -td.colFirst, th.colFirst { - white-space:nowrap; - font-size:13px; -} -td.colLast, th.colLast { - font-size:13px; -} -td.colOne, th.colOne { - font-size:13px; -} -.overviewSummary td.colFirst, .overviewSummary th.colFirst, -.overviewSummary td.colOne, .overviewSummary th.colOne, -.memberSummary td.colFirst, .memberSummary th.colFirst, -.memberSummary td.colOne, .memberSummary th.colOne, -.typeSummary td.colFirst{ - width:25%; - vertical-align:top; -} -td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { - font-weight:bold; -} -.tableSubHeadingColor { - background-color:#EEEEFF; -} -.altColor { - background-color:#FFFFFF; -} -.rowColor { - background-color:#EEEEEF; -} -/* -Content styles -*/ -.description pre { - margin-top:0; -} -.deprecatedContent { - margin:0; - padding:10px 0; -} -.docSummary { - padding:0; -} - -ul.blockList ul.blockList ul.blockList li.blockList h3 { - font-style:normal; -} - -div.block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} - -td.colLast div { - padding-top:0px; -} - - -td.colLast a { - padding-bottom:3px; -} -/* -Formatting effect styles -*/ -.sourceLineNo { - color:green; - padding:0 30px 0 0; -} -h1.hidden { - visibility:hidden; - overflow:hidden; - font-size:10px; -} -.block { - display:block; - margin:3px 10px 2px 0px; - color:#474747; -} -.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, -.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, -.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { - font-weight:bold; -} -.deprecationComment, .emphasizedPhrase, .interfaceName { - font-style:italic; -} - -div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, -div.block div.block span.interfaceName { - font-style:normal; -} - -div.contentContainer ul.blockList li.blockList h2{ - padding-bottom:0px; -}