All URIs are relative to https://localhost:9080/activiti-app/api
Method | HTTP request | Description |
---|---|---|
getAppVersionUsingGET | GET /enterprise/app-version | Get server type and version |
Map<String, String> getAppVersionUsingGET()
Get server type and version
Provides information about the running Alfresco Process Services Suite. The response payload object has the properties `type`, `majorVersion`, `minorVersion`, `revisionVersion` and `edition`.
// Import classes:
//import org.activiti.engine.remote.client.ApiClient;
//import org.activiti.engine.remote.client.ApiException;
//import org.activiti.engine.remote.client.Configuration;
//import org.activiti.engine.remote.client.auth.*;
//import org.activiti.engine.remote.client.api.AboutApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure HTTP basic authorization: basicAuth
HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth");
basicAuth.setUsername("YOUR USERNAME");
basicAuth.setPassword("YOUR PASSWORD");
AboutApi apiInstance = new AboutApi();
try {
Map<String, String> result = apiInstance.getAppVersionUsingGET();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AboutApi#getAppVersionUsingGET");
e.printStackTrace();
}
This endpoint does not need any parameter.
Map<String, String>
- Content-Type: application/json
- Accept: application/json