### GET /plans Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/docs/PlansApi.md Retrieves a list of all available plans. ```APIDOC ## GET /plans ### Description Return all plan ### Method GET ### Endpoint /plans ### Parameters #### Header Parameters - **sensediaAuth** (String) - Required - Sensedia-Auth ### Response #### Success Response (200) - **List** - A list containing all plan details. ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json ``` -------------------------------- ### PlanSimpleBean.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for a simple plan. ```APIDOC ## Method PlanSimpleBean.description(String) ### Description Sets or gets the description for a simple plan. ### Parameters - **description** (String) - The description of the plan. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.PlanSimpleBean` ``` -------------------------------- ### Get All Apps Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/AppsApi.html Retrieves a list of all applications. Requires an optional Sensedia-Auth header. ```APIDOC ## GET /apps ### Description Return all apps. ### Method GET ### Endpoint /apps ### Parameters #### Header Parameters - **sensediaAuth** (string) - Optional - Sensedia-Auth ### Response #### Success Response (200) - **List** (List) - A list of APP objects. ### Throws - **ApiException** - if fails to make API call ``` -------------------------------- ### APP.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for an application. ```APIDOC ## Method APP.description(String) ### Description Sets or gets the description for an application. ### Parameters - **description** (String) - The description of the application. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.APP` ``` -------------------------------- ### config Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ResourceBean.html Sets or gets the configuration for the resource. ```APIDOC ## config ### Description Sets or gets the configuration for the resource. ### Method public ResourceBean config(Object config) ### Parameters #### Path Parameters * **config** (Object) - Description not available ### Returns * ResourceBean - The updated ResourceBean instance. ``` ```APIDOC ## getConfig ### Description Gets the configuration for the resource. ### Method public Object getConfig() ### Returns * Object - The current configuration. ``` ```APIDOC ## setConfig ### Description Sets the configuration for the resource. ### Method public void setConfig(Object config) ### Parameters #### Path Parameters * **config** (Object) - Description not available ``` -------------------------------- ### Get All Plans Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/PlansApi.html Retrieves a list of all available plans. Requires authentication. ```APIDOC ## Get All Plans ### Description Retrieves a list of all available plans. Requires authentication. ### Method GET (Assumed based on common API patterns for retrieval, though not explicitly stated) ### Endpoint /plans (Assumed based on common API patterns for retrieval, though not explicitly stated) ### Parameters #### Path Parameters (None specified) #### Query Parameters - **sensediaAuth** (string) - Required - The authentication token for accessing the API. ### Request Example (No request body example provided in source) ### Response #### Success Response (200) - **List** - A list containing all plan details. #### Response Example (No response example provided in source) ``` -------------------------------- ### Get Top Access Tokens Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/docs/MetricsApi.md Fetches a list of top access tokens based on specified criteria such as quantity, date range, status, and resolution. This example demonstrates calling the `getTopAccessTokens1` method. ```java MetricsApi apiInstance = new MetricsApi(); String sensediaAuth = "sensediaAuth_example"; // String | Sensedia-Auth Integer howMany = 56; // Integer | How many String beginDate = "beginDate_example"; // String | Begin date String endDate = "endDate_example"; // String | End date String status = "status_example"; // String | Metric status String resolution = "resolution_example"; // String | Metric resolution try { List result = apiInstance.getTopAccessTokens1(sensediaAuth, howMany, beginDate, endDate, status, resolution); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling MetricsApi#getTopAccessTokens1"); e.printStackTrace(); } ``` -------------------------------- ### TopApp Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/TopApp.html Initializes a new instance of the TopApp class. ```APIDOC ## TopApp() ### Description Initializes a new instance of the TopApp class. ### Method Constructor ### Parameters None ``` -------------------------------- ### Get All Plans Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/docs/PlansApi.md Retrieves a list of all available API plans. Requires Sensedia-Auth. ```java // Import classes: //import com.sensedia.api.v3.client.ApiException; //import com.sensedia.api.v3.PlansApi; PlansApi apiInstance = new PlansApi(); String sensediaAuth = "sensediaAuth_example"; // String | Sensedia-Auth try { List result = apiInstance.getAllPlan1(sensediaAuth); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling PlansApi#getAllPlan1"); e.printStackTrace(); } ``` -------------------------------- ### Install API Client Library with Maven Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/README.md Use this command to install the API client library to your local Maven repository. ```shell mvn install ``` -------------------------------- ### DeploymentSimpleBean Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentSimpleBean.html Initializes a new instance of the DeploymentSimpleBean class. ```APIDOC ## Constructor DeploymentSimpleBean ### Description Initializes a new instance of the DeploymentSimpleBean class. ### Method public DeploymentSimpleBean() ### Parameters None ``` -------------------------------- ### deploymentSchedule Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the deployment schedule. Available in DeploymentBean. ```APIDOC ## deploymentSchedule(DeploymentScheduleBean) ### Description Sets or gets the deployment schedule. Available in DeploymentBean. ### Method Signature `deploymentSchedule(DeploymentScheduleBean)` ### Parameters * **DeploymentScheduleBean** - Description not available in source. ``` -------------------------------- ### Action Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ChangeLogBean.html Methods for setting and getting the action associated with the ChangeLogBean. ```APIDOC ## Action Methods ### `action(ChangeLogBean.ActionEnum action)` Sets the action for the ChangeLogBean. **Parameters:** - `action` (ChangeLogBean.ActionEnum) - The action to set. **Returns:** - `ChangeLogBean` - The updated ChangeLogBean instance. ### `getAction()` Gets the action of the ChangeLogBean. **Returns:** - `ChangeLogBean.ActionEnum` - The current action. ### `setAction(ChangeLogBean.ActionEnum action)` Sets the action for the ChangeLogBean. **Parameters:** - `action` (ChangeLogBean.ActionEnum) - The action to set. ``` -------------------------------- ### Clone API Example using Java Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/README.md This Java code demonstrates how to clone an API using the Sensedia client library. It includes necessary imports and exception handling. ```java import com.sensedia.api.v3.client.*; import com.sensedia.api.v3.client.auth.*; import com.sensedia.api.v3.model.*; import com.sensedia.api.v3.APIsApi; import java.io.File; import java.util.*; public class APIsApiExample { public static void main(String[] args) { APIsApi apiInstance = new APIsApi(); String id = "id_example"; // String | API id String sensediaAuth = "sensediaAuth_example"; // String | Sensedia-Auth API apiBean = new API(); // API | API json to update a api try { ModelAPIResponse result = apiInstance.cloneApi1(id, sensediaAuth, apiBean); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling APIsApi#cloneApi1"); e.printStackTrace(); } } } ``` -------------------------------- ### getApiClient Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/AppsApi.html Get the ApiClient instance. ```APIDOC ## getApiClient ### Description Get the ApiClient instance associated with this AppsApi. ### Method GET (Assumed based on common REST patterns for getters) ### Endpoint Not applicable (This is a client-side method) ### Parameters None ### Request Example None ### Response #### Success Response (200) - **return value** (ApiClient) - The ApiClient instance. #### Response Example ```java // Example of how to use it in Java ApiClient apiClient = appsApi.getApiClient(); ``` ``` -------------------------------- ### APP.secret Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the secret for an APP. ```APIDOC ## Method: secret ### Description Gets or sets the secret for an APP. ### Class com.sensedia.api.v3.model.APP ### Parameters * **secret** (String) - The secret. ``` -------------------------------- ### DeploymentBean Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentBean.html Initializes a new instance of the DeploymentBean class. ```APIDOC ## DeploymentBean() ### Description Initializes a new instance of the DeploymentBean class. ### Constructor `public DeploymentBean()` ``` -------------------------------- ### API Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/API.html Initializes a new instance of the API class. ```APIDOC ## API() ### Description Initializes a new instance of the API class. ### Constructor `public API()` ``` -------------------------------- ### AccessToken.scope Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the scope for an AccessToken. ```APIDOC ## Method: scope ### Description Gets or sets the scope for an AccessToken. ### Class com.sensedia.api.v3.model.AccessToken ### Parameters * **scope** (String) - The scope. ``` -------------------------------- ### Developer.role Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the role of a Developer. ```APIDOC ## Method: role ### Description Gets or sets the role of a Developer. ### Class com.sensedia.api.v3.model.Developer ### Parameters * **role** (Developer.RoleEnum) - The developer's role. ``` -------------------------------- ### POST /plans Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/docs/PlansApi.md Creates a new plan. ```APIDOC ## POST /plans ### Description Create a new plan ### Method POST ### Endpoint /plans ### Parameters #### Request Body - **planBean** (PlanResponse) - Required - planBean #### Header Parameters - **sensediaAuth** (String) - Required - Sensedia-Auth ### Response #### Success Response (200) - **PlanResponse** - The response will contain the details of the newly created plan. ### HTTP request headers - **Content-Type**: application/json - **Accept**: */* ``` -------------------------------- ### Creation Date Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ChangeLogBean.html Methods for setting and getting the creation date associated with the ChangeLogBean. ```APIDOC ## Creation Date Methods ### `creationDate(org.joda.time.DateTime creationDate)` Sets the creation date for the ChangeLogBean. **Parameters:** - `creationDate` (org.joda.time.DateTime) - The creation date to set. **Returns:** - `ChangeLogBean` - The updated ChangeLogBean instance. ### `getCreationDate()` Gets the creation date of the ChangeLogBean. **Returns:** - `org.joda.time.DateTime` - The current creation date. ### `setCreationDate(org.joda.time.DateTime creationDate)` Sets the creation date for the ChangeLogBean. **Parameters:** - `creationDate` (org.joda.time.DateTime) - The creation date to set. ``` -------------------------------- ### RevisionBean.destination Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the destination for a revision. ```APIDOC ## Method RevisionBean.destination(String) ### Description Sets or gets the destination for a revision. ### Parameters - **destination** (String) - The destination of the revision. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.RevisionBean` ``` -------------------------------- ### DeploymentSimpleBean Constructors and Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentSimpleBean.html This section outlines the available constructors and methods for the DeploymentSimpleBean class. These are the primary interfaces users can interact with when using this bean. ```APIDOC ## DeploymentSimpleBean ### Description Represents a simplified deployment bean, likely used for API management operations. ### Constructors #### `DeploymentSimpleBean()` - Description: Initializes a new instance of the `DeploymentSimpleBean` class. ### Methods #### `DeploymentSimpleBean apiId(Long apiId)` - Description: Sets the API ID for the deployment. - Returns: The updated `DeploymentSimpleBean` instance for fluent chaining. #### `DeploymentSimpleBean apiName(String apiName)` - Description: Sets the API name for the deployment. - Returns: The updated `DeploymentSimpleBean` instance for fluent chaining. #### `boolean equals(Object o)` - Description: Compares this `DeploymentSimpleBean` object to another object for equality. - Parameters: - **o** (Object) - The object to compare with. - Returns: `true` if the objects are equal, `false` otherwise. #### `Long getApiId()` - Description: Retrieves the API ID associated with the deployment. - Returns: The API ID. #### `String getApiName()` - Description: Retrieves the API name associated with the deployment. - Returns: The API name. ``` -------------------------------- ### DeploymentSimpleBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentSimpleBean.html Provides documentation for the getter and setter methods of the DeploymentSimpleBean class. ```APIDOC ## DeploymentSimpleBean Methods ### Description This section details the public methods available for the `DeploymentSimpleBean` class, allowing retrieval and modification of its properties. ### Methods #### `getApiName()` - **Description**: Retrieves the name of the API. - **Returns**: `String` #### `getId()` - **Description**: Retrieves the unique identifier of the deployment. - **Returns**: `Long` #### `getRevisionId()` - **Description**: Retrieves the ID of the revision. - **Returns**: `Long` #### `getRevisionNumber()` - **Description**: Retrieves the number of the revision. - **Returns**: `Integer` #### `setApiId(Long apiId)` - **Description**: Sets the API ID for the deployment. - **Parameters**: - `apiId` (Long) - The API ID to set. - **Returns**: `void` #### `setApiName(String apiName)` - **Description**: Sets the name of the API for the deployment. - **Parameters**: - `apiName` (String) - The API name to set. - **Returns**: `void` #### `setId(Long id)` - **Description**: Sets the unique identifier for the deployment. - **Parameters**: - `id` (Long) - The ID to set. - **Returns**: `void` #### `setRevisionId(Long revisionId)` - **Description**: Sets the revision ID for the deployment. - **Parameters**: - `revisionId` (Long) - The revision ID to set. - **Returns**: `void` #### `setRevisionNumber(Integer revisionNumber)` - **Description**: Sets the revision number for the deployment. - **Parameters**: - `revisionNumber` (Integer) - The revision number to set. - **Returns**: `void` #### `hashCode()` - **Description**: Computes the hash code for this `DeploymentSimpleBean` object. - **Returns**: `int` #### `toString()` - **Description**: Returns a string representation of the `DeploymentSimpleBean` object. - **Returns**: `String` ``` -------------------------------- ### ResourceBean.destination Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the destination for a resource. ```APIDOC ## Method ResourceBean.destination(String) ### Description Sets or gets the destination for a resource. ### Parameters - **destination** (String) - The destination of the resource. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.ResourceBean` ``` -------------------------------- ### OperationBean.destination Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the destination for an operation. ```APIDOC ## Method OperationBean.destination(String) ### Description Sets or gets the destination for an operation. ### Parameters - **destination** (String) - The destination of the operation. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.OperationBean` ``` -------------------------------- ### createApp1 Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/docs/AppsApi.md Create a new application. ```APIDOC ## POST /apps ### Description Create a new app. ### Method POST ### Endpoint /apps ### Parameters #### Query Parameters - **sensediaAuth** (String) - Required - Sensedia-Auth #### Request Body - **appTokenBean** (APP) - Optional - App json to create a new app. ### Response #### Success Response (200) - **result** (APPResponse) - The created app details. ### Request Example { "example": "{\"name\": \"New App\", \"description\": \"A sample app\"}" } ### Response Example { "example": "{\"code\": \"app-123\", \"name\": \"New App\"}" } ``` -------------------------------- ### TeamBean.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for a team. ```APIDOC ## Method TeamBean.description(String) ### Description Sets or gets the description for a team. ### Parameters - **description** (String) - The description of the team. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.TeamBean` ``` -------------------------------- ### PlansApi - getAllPlan1 Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/README.md Returns a list of all available plans. ```APIDOC ## GET /plans ### Description Return all plan ### Method GET ### Endpoint /plans ``` -------------------------------- ### RoleBean.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for a role. ```APIDOC ## Method RoleBean.description(String) ### Description Sets or gets the description for a role. ### Parameters - **description** (String) - The description of the role. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.RoleBean` ``` -------------------------------- ### Configuration() Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/client/Configuration.html Constructs a new Configuration object. This is a private constructor and should not be called directly. ```APIDOC ## Configuration() ### Description Constructs a new Configuration object. This constructor is intended for internal use and should not be called directly by users of the SDK. ### Method `Configuration()` ### Constructor Detail `Configuration()` ``` -------------------------------- ### ResourceBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ResourceBean.html This section outlines the methods available on the ResourceBean class, including methods for setting and getting various properties. ```APIDOC ## ResourceBean Class Documentation This document describes the methods available for the `ResourceBean` class. ### Methods - **`config(Object config)`** - Sets the configuration for the resource. - Returns: `ResourceBean` - **`description(String description)`** - Sets the description for the resource. - Returns: `ResourceBean` - **`destination(String destination)`** - Sets the destination for the resource. - Returns: `ResourceBean` - **`equals(Object o)`** - Checks if this `ResourceBean` is equal to another object. - Returns: `boolean` - **`getApiBroken()`** - Gets the `apiBroken` status of the resource. - Returns: `Object` - **`getConfig()`** - Gets the configuration of the resource. - Returns: `Object` - **`getDescription()`** - Gets the description of the resource. - Returns: `String` - **`getDestination()`** - Gets the destination of the resource. - Returns: `String` - **`getId()`** - Gets the ID of the resource. - Returns: `Long` - **`getInterceptors()`** - Gets the list of interceptors associated with the resource. - Returns: `List` - **`getName()`** - Gets the name of the resource. - Returns: `String` - **`getOperations()`** - Gets the list of operations associated with the resource. - Returns: `List` - **`getTimeout()`** - Gets the timeout value for the resource. - Returns: `String` - **`hashCode()`** - Computes the hash code for this `ResourceBean`. - Returns: `int` - **`id(Long id)`** - Sets the ID for the resource. - Returns: `ResourceBean` ``` -------------------------------- ### ResourceBean.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for a resource. ```APIDOC ## Method ResourceBean.description(String) ### Description Sets or gets the description for a resource. ### Parameters - **description** (String) - The description of the resource. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.ResourceBean` ``` -------------------------------- ### PlanSimpleBean.getDescription() Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Retrieves the description of the PlanSimpleBean. ```APIDOC ## PlanSimpleBean.getDescription() ### Description Get description. ### Method GET (Implicit) ### Endpoint N/A (Method within a class) ### Parameters None ### Response #### Success Response - **String**: The description of the PlanSimpleBean. ``` -------------------------------- ### OperationBean.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for an operation. ```APIDOC ## Method OperationBean.description(String) ### Description Sets or gets the description for an operation. ### Parameters - **description** (String) - The description of the operation. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.OperationBean` ``` -------------------------------- ### DeploymentScheduleBean Constructors and Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentScheduleBean.html This section details the available constructors and methods for the DeploymentScheduleBean class, allowing for the management of deployment schedules. ```APIDOC ## DeploymentScheduleBean ### Description Represents a deployment schedule within the API. ### Constructors #### `DeploymentScheduleBean()` - Creates a new instance of DeploymentScheduleBean. ### Methods #### `addDeploymentsItem(DeploymentBean deploymentsItem)` - Adds a deployment item to the schedule. - Returns: `DeploymentScheduleBean` for chaining. #### `creationDate(DateTime creationDate)` - Sets the creation date for the deployment schedule. - Returns: `DeploymentScheduleBean` for chaining. ### Nested Classes #### `static class StatusEnum` - Gets or Sets status for the deployment schedule. ``` -------------------------------- ### PlanSimpleBean Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/PlanSimpleBean.html Initializes a new instance of the PlanSimpleBean class. ```APIDOC ## PlanSimpleBean() ### Description Initializes a new instance of the PlanSimpleBean class. ### Constructor `PlanSimpleBean()` ``` -------------------------------- ### API.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for an API. ```APIDOC ## Method API.description(String) ### Description Sets or gets the description for an API. ### Parameters - **description** (String) - The description of the API. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.API` ``` -------------------------------- ### Get Interceptors Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/class-use/InterceptorBean.html Retrieves a list of interceptors. ```APIDOC ## getInterceptors() ### Description Retrieves a list of interceptors. ### Method Not specified (likely a getter method). ### Endpoint Not applicable (this appears to be an SDK method). ### Parameters None ### Response - **Type**: `List` - **Description**: A list of InterceptorBean objects. ``` -------------------------------- ### TopApp Class Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/class-use/TopApp.html Provides documentation for the methods available on the TopApp class, specifically for setting the application name and its associated percentage. ```APIDOC ## TopApp Class Methods ### Description This section details the methods available for the `TopApp` class, which is used to represent an application with a name and a percentage value. ### Methods #### `name(String name)` * **Description**: Sets the name of the application. * **Parameters**: * `name` (String) - Required - The name of the application. #### `percent(Double percent)` * **Description**: Sets the percentage associated with the application. * **Parameters**: * `percent` (Double) - Required - The percentage value. ``` -------------------------------- ### getTotal Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/TokensMetric.html Gets the total value from the TokensMetric. ```APIDOC ## getTotal() ### Description Gets the total value from the TokensMetric. ### Method `Integer getTotal()` ### Returns - **total** (Integer) - The total value. ``` -------------------------------- ### getCreated Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/TokensMetric.html Gets the created value from the TokensMetric. ```APIDOC ## getCreated() ### Description Gets the created value from the TokensMetric. ### Method `Integer getCreated()` ### Returns - **created** (Integer) - The created value. ``` -------------------------------- ### EnvironmentSimpleBean Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/EnvironmentSimpleBean.html Initializes a new instance of the EnvironmentSimpleBean class. ```APIDOC ## EnvironmentSimpleBean() ### Description Initializes a new instance of the EnvironmentSimpleBean class. ### Constructor `public EnvironmentSimpleBean()` ``` -------------------------------- ### Create Plan Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/PlansApi.html Creates a new plan with the provided details. Requires authentication. ```APIDOC ## Create Plan ### Description Creates a new plan with the provided details. Requires authentication. ### Method POST (Assumed based on common API patterns for creation, though not explicitly stated) ### Endpoint /plans (Assumed based on common API patterns for creation, though not explicitly stated) ### Parameters #### Path Parameters (None specified) #### Query Parameters - **sensediaAuth** (string) - Required - The authentication token for accessing the API. #### Request Body - **planBean** (PlanResponse) - Required - The details of the plan to be created. ### Request Example ```json { "example": "request body" } ``` ### Response #### Success Response (200) - **PlanResponse** - The details of the newly created plan. #### Response Example ```json { "example": "response body" } ``` ``` -------------------------------- ### destination Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ResourceBean.html Sets or gets the destination for the resource. ```APIDOC ## destination ### Description Sets or gets the destination for the resource. ### Method public ResourceBean destination(String destination) ### Parameters #### Path Parameters * **destination** (String) - Description not available ### Returns * ResourceBean - The updated ResourceBean instance. ``` ```APIDOC ## getDestination ### Description Gets the destination for the resource. ### Method public String getDestination() ### Returns * String - The current destination. ``` ```APIDOC ## setDestination ### Description Sets the destination for the resource. ### Method public void setDestination(String destination) ### Parameters #### Path Parameters * **destination** (String) - Description not available ``` -------------------------------- ### Create App Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/AppsApi.html Creates a new application. Requires an optional Sensedia-Auth header and an optional App object in the request body. ```APIDOC ## POST /apps ### Description Create a new app. ### Method POST ### Endpoint /apps ### Parameters #### Header Parameters - **sensediaAuth** (string) - Optional - Sensedia-Auth #### Request Body - **appTokenBean** (APP) - Optional - App json to create a new app. ### Response #### Success Response (200) - **APPResponse** (APPResponse) - The response object containing the created app details. ### Throws - **ApiException** - if fails to make API call ``` -------------------------------- ### description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ResourceBean.html Sets or gets the description for the resource. ```APIDOC ## description ### Description Sets or gets the description for the resource. ### Method public ResourceBean description(String description) ### Parameters #### Path Parameters * **description** (String) - Description not available ### Returns * ResourceBean - The updated ResourceBean instance. ``` ```APIDOC ## getDescription ### Description Gets the description for the resource. ### Method public String getDescription() ### Returns * String - The current description. ``` ```APIDOC ## setDescription ### Description Sets the description for the resource. ### Method public void setDescription(String description) ### Parameters #### Path Parameters * **description** (String) - Description not available ``` -------------------------------- ### OperationBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/OperationBean.html This section details the methods available for the OperationBean class, including setting and getting timeouts and URLs. ```APIDOC ## OperationBean ### Description Provides methods to manage operation-specific configurations like timeouts and URLs. ### Methods #### `getTimeout()` * **Description**: Retrieves the current timeout setting for the operation. * **Returns**: The timeout value as a String. #### `setTimeout(String timeout)` * **Description**: Sets the timeout for the operation. * **Parameters**: * `timeout` (String) - The timeout value to set. #### `getUrls()` * **Description**: Retrieves the list of URLs associated with the operation. * **Returns**: A List of OperationUrlBean objects. #### `setUrls(List urls)` * **Description**: Sets the list of URLs for the operation. * **Parameters**: * `urls` (List) - The list of OperationUrlBean objects to set. #### `addUrlsItem(OperationUrlBean urlsItem)` * **Description**: Adds a single URL item to the existing list of URLs. * **Parameters**: * `urlsItem` (OperationUrlBean) - The OperationUrlBean to add. * **Returns**: The updated OperationBean instance for chaining. ``` -------------------------------- ### getDescription() Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/PlanResponse.html Retrieves the description of the plan. ```APIDOC ## getDescription() ### Description Retrieves the description of the plan. ### Method Signature `public String getDescription()` ### Returns * **String** - The description of the plan. ``` -------------------------------- ### DeploymentScheduleBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentScheduleBean.html This section details the methods available for the DeploymentScheduleBean class, including methods for managing deployments, retrieving identifiers, and setting various properties. ```APIDOC ## DeploymentScheduleBean ### Description Represents a deployment schedule with associated deployments and metadata. ### Methods #### `deployments(List deployments)` Sets the list of deployments for this schedule. #### `equals(Object o)` Indicates whether some other object is "equal to" this one. #### `getCreationDate()` Returns the creation date of the deployment schedule. #### `getDeployments()` Returns the list of deployments associated with this schedule. #### `getId()` Returns the unique identifier of the deployment schedule. #### `getName()` Returns the name of the deployment schedule. #### `getScheduleDate()` Returns the scheduled date for the deployment. #### `getStatus()` Returns the current status of the deployment schedule. #### `hashCode()` Returns a hash code value for the object. #### `id(Long id)` Sets the unique identifier for the deployment schedule. #### `name(String name)` Sets the name for the deployment schedule. #### `scheduleDate(DateTime scheduleDate)` Sets the scheduled date for the deployment. #### `setCreationDate(DateTime creationDate)` Sets the creation date for the deployment schedule. #### `setDeployments(List deployments)` Sets the list of deployments for this schedule. #### `setId(Long id)` Sets the unique identifier for the deployment schedule. #### `setName(String name)` Sets the name for the deployment schedule. #### `setScheduleDate(DateTime scheduleDate)` Sets the scheduled date for the deployment. ``` -------------------------------- ### DeploymentScheduleBean.scheduleDate Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the schedule date for a DeploymentScheduleBean. ```APIDOC ## Method: scheduleDate ### Description Gets or sets the schedule date for a DeploymentScheduleBean. ### Class com.sensedia.api.v3.model.DeploymentScheduleBean ### Parameters * **scheduleDate** (DateTime) - The schedule date. ``` -------------------------------- ### UserBean.roles Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the list of roles for a UserBean. ```APIDOC ## Method: roles ### Description Gets or sets the list of roles for a UserBean. ### Class com.sensedia.api.v3.model.UserBean ### Parameters * **roles** (List) - The list of RoleBean objects. ``` -------------------------------- ### ApiClient Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/client/ApiClient.html Initializes a new instance of the ApiClient class. ```APIDOC ## ApiClient() ### Description Initializes a new instance of the ApiClient class. ### Constructor `ApiClient()` ``` -------------------------------- ### API.revisions Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the list of revisions for an API. ```APIDOC ## Method: revisions ### Description Gets or sets the list of revisions for an API. ### Class com.sensedia.api.v3.model.API ### Parameters * **revisions** (List) - The list of RevisionSimpleBean objects. ``` -------------------------------- ### RevisionSimpleBean.revisionNumber Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the revision number for a RevisionSimpleBean. ```APIDOC ## Method: revisionNumber ### Description Gets or sets the revision number for a RevisionSimpleBean. ### Class com.sensedia.api.v3.model.RevisionSimpleBean ### Parameters * **revisionNumber** (Integer) - The revision number. ``` -------------------------------- ### apiName Method Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentSimpleBean.html Sets the API name for the deployment and returns the DeploymentSimpleBean instance for fluent chaining. ```APIDOC ## Method apiName ### Description Sets the API name for the deployment and returns the DeploymentSimpleBean instance for fluent chaining. ### Method public DeploymentSimpleBean apiName(String apiName) ### Parameters * **apiName** (String) - The API name to set. ``` -------------------------------- ### RevisionBean.revisionNumber Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the revision number for a RevisionBean. ```APIDOC ## Method: revisionNumber ### Description Gets or sets the revision number for a RevisionBean. ### Class com.sensedia.api.v3.model.RevisionBean ### Parameters * **revisionNumber** (Integer) - The revision number. ``` -------------------------------- ### HttpBasicAuth Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/client/auth/HttpBasicAuth.html Initializes a new instance of the HttpBasicAuth class. ```APIDOC ## HttpBasicAuth() ### Description Initializes a new instance of the HttpBasicAuth class. ### Constructor `public HttpBasicAuth()` ``` -------------------------------- ### DeploymentSimpleBean.revisionNumber Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Gets or sets the revision number for a DeploymentSimpleBean. ```APIDOC ## Method: revisionNumber ### Description Gets or sets the revision number for a DeploymentSimpleBean. ### Class com.sensedia.api.v3.model.DeploymentSimpleBean ### Parameters * **revisionNumber** (Integer) - The revision number. ``` -------------------------------- ### PlansApi - createPlan1 Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/README.md Creates a new plan. ```APIDOC ## POST /plans ### Description Create a new plan ### Method POST ### Endpoint /plans ``` -------------------------------- ### APP.developer Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the developer information for an application. ```APIDOC ## Method APP.developer(String) ### Description Sets or gets the developer information for an application. ### Parameters - **developer** (String) - The developer information. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.APP` ``` -------------------------------- ### PlansApi.createPlan1 Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/client/class-use/ApiException.html Creates a new plan. Requires a PlanResponse object with plan details and an authentication token. ```APIDOC ## PlansApi.createPlan1 ### Description Create a new plan. ### Method POST (inferred) ### Endpoint /plans (inferred) ### Parameters #### Path Parameters None #### Query Parameters None #### Request Body - **planBean** (PlanResponse) - Required - Object containing the details for the new plan. - **sensediaAuth** (String) - Required - Authentication token. ``` -------------------------------- ### RevisionSimpleBean.destination Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the destination for a simple revision. ```APIDOC ## Method RevisionSimpleBean.destination(String) ### Description Sets or gets the destination for a simple revision. ### Parameters - **destination** (String) - The destination of the revision. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.RevisionSimpleBean` ``` -------------------------------- ### APPResponse Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/APPResponse.html Initializes a new instance of the APPResponse class. ```APIDOC ## APPResponse() ### Description Initializes a new instance of the APPResponse class. ### Constructor `public APPResponse()` ``` -------------------------------- ### name(String name) Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/TopApp.html Sets the name for the TopApp. ```APIDOC ## name(String name) ### Description Sets the name for the TopApp. ### Method Setter ### Parameters #### Path Parameters - **name** (String) - Description not provided ``` -------------------------------- ### DeploymentScheduleBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentScheduleBean.html This section details the methods available for interacting with DeploymentScheduleBean objects, including setting and getting properties like ID, name, schedule date, and status. ```APIDOC ## DeploymentScheduleBean ### Description Represents a deployment schedule with properties for ID, name, schedule date, and status. ### Methods #### `id(Long id)` Sets the ID for the deployment schedule. #### `getId()` Gets the ID of the deployment schedule. * **Returns:** `Long` - The ID of the deployment schedule. #### `setId(Long id)` Sets the ID for the deployment schedule. #### `name(String name)` Sets the name for the deployment schedule. #### `getName()` Gets the name of the deployment schedule. * **Returns:** `String` - The name of the deployment schedule. #### `setName(String name)` Sets the name for the deployment schedule. #### `scheduleDate(org.joda.time.DateTime scheduleDate)` Sets the schedule date for the deployment. #### `getScheduleDate()` Gets the schedule date of the deployment. * **Returns:** `org.joda.time.DateTime` - The schedule date. #### `setScheduleDate(org.joda.time.DateTime scheduleDate)` Sets the schedule date for the deployment. #### `status(DeploymentScheduleBean.StatusEnum status)` Sets the status for the deployment schedule. #### `getStatus()` Gets the status of the deployment schedule. * **Returns:** `DeploymentScheduleBean.StatusEnum` - The status of the deployment schedule. #### `setStatus(DeploymentScheduleBean.StatusEnum status)` Sets the status for the deployment schedule. #### `equals(Object o)` Overrides the default equals method. #### `hashCode()` Overrides the default hashCode method. #### `toString()` Overrides the default toString method. ``` -------------------------------- ### PlanResponse.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for a plan response. ```APIDOC ## Method PlanResponse.description(String) ### Description Sets or gets the description for a plan response. ### Parameters - **description** (String) - The description of the plan response. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.PlanResponse` ``` -------------------------------- ### DeploymentBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentBean.html This section details the available methods for the DeploymentBean class, including getters and setters for deployment properties such as revision ID, revision number, API description, API ID, API name, deployment date, deployment schedule, environment ID, and status. ```APIDOC ## DeploymentBean Methods ### Description Provides access to and modification of deployment-related information. ### Methods - **getRevisionId()**: Returns the revision ID of the deployment. - **getRevisionNumber()**: Returns the revision number of the deployment. - **getApiDescription()**: Returns the description of the API associated with the deployment. - **getApiId()**: Returns the ID of the API associated with the deployment. - **getApiName()**: Returns the name of the API associated with the deployment. - **getDeployDate()**: Returns the deployment date. - **getDeploymentSchedule()**: Returns the deployment schedule. - **getEnvironmentId()**: Returns the ID of the environment where the deployment occurred. - **getId()**: Returns the ID of the deployment. - **getStatus()**: Returns the status of the deployment. - **setApiDescription(String apiDescription)**: Sets the description for the API. - **setApiId(Long apiId)**: Sets the ID for the API. - **setApiName(String apiName)**: Sets the name for the API. - **setDeployDate(DateTime deployDate)**: Sets the deployment date. - **setDeploymentSchedule(DeploymentScheduleBean deploymentSchedule)**: Sets the deployment schedule. - **setEnvironmentId(Long environmentId)**: Sets the environment ID. - **setId(Long id)**: Sets the deployment ID. - **setRevisionId(Long revisionId)**: Sets the revision ID. - **setRevisionNumber(Integer revisionNumber)**: Sets the revision number. - **setStatus(DeploymentBean.StatusEnum status)**: Sets the deployment status. - **toString()**: Returns a string representation of the DeploymentBean object. ``` -------------------------------- ### APISimpleBean.description Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Sets or gets the description for a simple API. ```APIDOC ## Method APISimpleBean.description(String) ### Description Sets or gets the description for a simple API. ### Parameters - **description** (String) - The description of the API. ### Returns (Return type not specified, likely void or the object itself for chaining) ### Class `com.sensedia.api.v3.model.APISimpleBean` ``` -------------------------------- ### APP.getDescription() Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Retrieves the description of the APP. ```APIDOC ## APP.getDescription() ### Description Get description. ### Method GET (Implicit) ### Endpoint N/A (Method within a class) ### Parameters None ### Response #### Success Response - **String**: The description of the APP. ``` -------------------------------- ### Get URL Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/Call.html Retrieves the URL associated with a call. ```APIDOC ## getUrl ### Description Retrieves the URL associated with a call. ### Method GET ### Endpoint /calls/{id}/url ### Parameters #### Path Parameters - **id** (string) - Required - The ID of the call. ### Response #### Success Response (200) - **url** (string) - The URL. ``` -------------------------------- ### Get URI Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/Call.html Retrieves the URI associated with a call. ```APIDOC ## getUri ### Description Retrieves the URI associated with a call. ### Method GET ### Endpoint /calls/{id}/uri ### Parameters #### Path Parameters - **id** (string) - Required - The ID of the call. ### Response #### Success Response (200) - **uri** (string) - The URI. ``` -------------------------------- ### TeamBean - UserBean Usage Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/class-use/UserBean.html Demonstrates how UserBean instances are managed within the TeamBean class, including adding individual users and setting a list of users. ```APIDOC ## Method: addUsersItem ### Description Adds a single UserBean object to a list of users within a TeamBean. ### Signature `TeamBean.addUsersItem(UserBean usersItem)` ### Parameters * **usersItem** (UserBean) - The UserBean object to add. ``` ```APIDOC ## Method: setUsers ### Description Sets the entire list of UserBean objects for a TeamBean. ### Signature `void setUsers(List users)` ### Parameters * **users** (List) - The list of UserBean objects to set. ``` ```APIDOC ## Method: users ### Description Retrieves the list of UserBean objects associated with a TeamBean. ### Signature `List users(List users)` ### Returns * **List** - The list of UserBean objects. ``` -------------------------------- ### apiBroken Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ResourceBean.html Sets or gets the apiBroken status for the resource. ```APIDOC ## apiBroken ### Description Sets or gets the apiBroken status for the resource. ### Method public ResourceBean apiBroken(Boolean apiBroken) ### Parameters #### Path Parameters * **apiBroken** (Boolean) - Description not available ### Returns * ResourceBean - The updated ResourceBean instance. ``` ```APIDOC ## getApiBroken ### Description Gets the apiBroken status for the resource. ### Method public Boolean getApiBroken() ### Returns * Boolean - The current apiBroken status. ``` ```APIDOC ## setApiBroken ### Description Sets the apiBroken status for the resource. ### Method public void setApiBroken(Boolean apiBroken) ### Parameters #### Path Parameters * **apiBroken** (Boolean) - Description not available ``` -------------------------------- ### getDescription Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/PlanSimpleBean.html Retrieves the description of the PlanSimpleBean. ```APIDOC ## getDescription() ### Description Retrieves the description of the PlanSimpleBean. ### Method `getDescription` ### Returns - **String** - The plan description. ``` -------------------------------- ### ChangeLog Constructor Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/ChangeLog.html Initializes a new instance of the ChangeLog class. ```APIDOC ## ChangeLog() ### Description Initializes a new instance of the ChangeLog class. ### Constructor `public ChangeLog()` ``` -------------------------------- ### DeploymentScheduleBean Methods Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/com/sensedia/api/v3/model/DeploymentScheduleBean.html This section details the public methods of the DeploymentScheduleBean class, including methods for managing creation dates, deployments, and status. ```APIDOC ## DeploymentScheduleBean Class Documentation ### Description Provides methods to manage deployment schedules, including setting and retrieving creation dates, managing associated deployments, and updating the status. ### Methods #### `creationDate(DateTime creationDate)` Sets the creation date for the deployment schedule. #### `getCreationDate()` Retrieves the creation date of the deployment schedule. * **Returns**: `DateTime` - The creation date. #### `setCreationDate(DateTime creationDate)` Sets the creation date for the deployment schedule. #### `deployments(List deployments)` Sets the list of deployments for the schedule. #### `addDeploymentsItem(DeploymentBean deploymentsItem)` Adds a single deployment item to the list of deployments. #### `getDeployments()` Retrieves the list of deployments associated with the schedule. * **Returns**: `List` - The list of deployments. #### `setDeployments(List deployments)` Sets the list of deployments for the schedule. #### `setStatus(DeploymentScheduleBean.StatusEnum status)` Sets the status of the deployment schedule. #### `getStatus()` Retrieves the current status of the deployment schedule. * **Returns**: `DeploymentScheduleBean.StatusEnum` - The current status. #### `id(String id)` Sets the ID for the deployment schedule. #### `getId()` Retrieves the ID of the deployment schedule. * **Returns**: `String` - The deployment schedule ID. #### `toString()` Returns a string representation of the DeploymentScheduleBean object. * **Returns**: `String` - A string representation of the object. ``` -------------------------------- ### getUserType Source: https://github.com/sensedia/api-manager-java-client-sdk/blob/master/target/apidocs/index-all.html Get userType. This method is part of the UserBean class. ```APIDOC ## getUserType() ### Description Get userType. ### Method Not specified (likely a GET request). ### Endpoint Not specified. ### Parameters None specified. ### Request Example None specified. ### Response #### Success Response (200) None specified. #### Response Example None specified. ```