Changes
Page history
formatting of eclipse import tutorial
authored
May 30, 2017
by
Björn Butzin
Hide whitespace changes
Inline
Side-by-side
home.markdown
View page @
bec6c598
...
@@ -22,8 +22,9 @@ The following points will be covered by this tutorial:
...
@@ -22,8 +22,9 @@ The following points will be covered by this tutorial:
-
Click on
`add to Firefox`
and Confirm Installation
-
Click on
`add to Firefox`
and Confirm Installation
-
Restart Firefox
-
Restart Firefox
After the installation you can enter anything like
`coap://host:port/resourcePath/?query=filter`
in the address bar.
After the installation you can enter anything like
`coap://host:port/resourcePath/?query=filter`
in the address bar.
Copper will allow you to make any CoAP interaction.
Copper will allow you to make any CoAP interaction.


## 3. Introduction of jCoAP
## 3. Introduction of jCoAP
...
@@ -34,21 +35,21 @@ Copper will allow you to make any CoAP interaction.
...
@@ -34,21 +35,21 @@ Copper will allow you to make any CoAP interaction.
#### Client Side
#### Client Side


**CoapClient:**
Interface that must be implemented by a client
**CoapClient:**
Interface that must be implemented by a client
**Client:**
Customized implementation of a client application, implements
`CoapClient`
**Client:**
Customized implementation of a client application, implements
`CoapClient`
**Channel:**
A channel represents a connection between a Client and a Server
**Channel:**
A channel represents a connection between a Client and a Server
**ChannelManager:**
Manages
`Channels`
(Timeouts, Matching Requests and Responses)
**ChannelManager:**
Manages
`Channels`
(Timeouts, Matching Requests and Responses)
#### Server Side
#### Server Side


**CoapResource:**
Interface that must be supported by each resource.
**CoapResource:**
Interface that must be supported by each resource.
**BasicCoapResource:**
Already implemented resource with basic functionality, implements
`CoapResource`
**BasicCoapResource:**
Already implemented resource with basic functionality, implements
`CoapResource`
**TemperatureResource:**
Example of a customized resource, inherits from
`BasicCoapResource`
**TemperatureResource:**
Example of a customized resource, inherits from
`BasicCoapResource`
**CoapServer:**
Interface that must be supported by a resource server
**CoapServer:**
Interface that must be supported by a resource server
**CoapResourceServer:**
Manages a list of resources, enables access of these resources from outside, implements
`CoapServer`
**CoapResourceServer:**
Manages a list of resources, enables access of these resources from outside, implements
`CoapServer`
**Server:**
Example of a customized implementation of a server application, creates
`CoapResourceServer`
and
`CoapResources`
**Server:**
Example of a customized implementation of a server application, creates
`CoapResourceServer`
and
`CoapResources`
## 4. Import of prepared project into Eclipse
## 4. Import of prepared project into Eclipse
...
...
...
...