public interface RESTService extends CompanionService
Modifier and Type | Method and Description |
---|---|
void |
DELETE(java.lang.String resourceURI)
Realizes DELETE HTTP request.
|
java.lang.String |
GET(java.lang.String resourceURI)
Realizes GET HTTP request.
|
void |
POST(java.lang.String resourceURI,
java.lang.String value)
Realizes POST HTTP request.
|
void |
PUT(java.lang.String resourceURI,
java.lang.String value)
Realizes PUT HTTP request.
|
getAppToAppInfos, getFriendlyName, pause, resume, start, stop
java.lang.String GET(java.lang.String resourceURI)
resourceURI
- URI of a resource to query.void POST(java.lang.String resourceURI, java.lang.String value)
resourceURI
- URI of a resource.value
- New value of the resource.void PUT(java.lang.String resourceURI, java.lang.String value)
resourceURI
- URI of a resource.value
- New value of the resource.void DELETE(java.lang.String resourceURI)
resourceURI
- URI of a resource to remove.