Skip to content
GitLab
Explore
Sign in
Admin message
Gitlab Update from 17.11.1 to 17.11.2 runs on 2025-05-14
Changes
Page history
formatting of eclipse import tutorial
authored
May 30, 2017
by
Björn Butzin
Show whitespace changes
Inline
Side-by-side
home.markdown
View page @
dcf7e579
...
@@ -95,12 +95,10 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
...
@@ -95,12 +95,10 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
*
A constructor to initialize the resource and disallow POST, PUT and DELETE requests
*
A constructor to initialize the resource and disallow POST, PUT and DELETE requests
*
Two get() Methods:
*
Two get() Methods:
*
Get a list of accepted media types [& query parameters] which returns a
`byte[]`
together with its media type
*
Get a list of accepted media types [& query parameters] which returns a
`byte[]`
together with its media type
```
java
```
java
CoapData
get
(
List
<
CoapMediaType
>
mediaTypesAccepted
);
CoapData
get
(
List
<
CoapMediaType
>
mediaTypesAccepted
);
CoapData
get
(
List
<
String
>
query
,
List
<
CoapMediaType
>
mediaTypesAccepted
);
CoapData
get
(
List
<
String
>
query
,
List
<
CoapMediaType
>
mediaTypesAccepted
);
```
```
*
And the
`getResourceType()`
method
*
And the
`getResourceType()`
method
*
Which returns a description string of the resource
*
Which returns a description string of the resource
...
...