Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
Java SDK for accessing Precisely APIs which transform your business with new insights. Enrich and enhance your data, applications, business processes, and workflows with hundreds of Location and Identity datasets and APIs.
/*
* Precisely APIs
* Enhance & enrich your data, applications, business processes, and workflows with rich location, information, and identify APIs.
*
* The version of the OpenAPI document: 18.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.precisely.apis;
import com.precisely.ApiCallback;
import com.precisely.ApiClient;
import com.precisely.ApiException;
import com.precisely.ApiResponse;
import com.precisely.Configuration;
import com.precisely.Pair;
import com.precisely.ProgressRequestBody;
import com.precisely.ProgressResponseBody;
import com.google.gson.reflect.TypeToken;
import java.io.IOException;
import com.precisely.apis.model.ErrorInfo1;
import com.precisely.apis.model.RateCenterResponse;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class TelecommInfoServiceApi {
private ApiClient localVarApiClient;
private int localHostIndex;
private String localCustomBaseUrl;
public TelecommInfoServiceApi() {
this(Configuration.getDefaultApiClient());
}
public TelecommInfoServiceApi(ApiClient apiClient) {
this.localVarApiClient = apiClient;
}
public ApiClient getApiClient() {
return localVarApiClient;
}
public void setApiClient(ApiClient apiClient) {
this.localVarApiClient = apiClient;
}
public int getHostIndex() {
return localHostIndex;
}
public void setHostIndex(int hostIndex) {
this.localHostIndex = hostIndex;
}
public String getCustomBaseUrl() {
return localCustomBaseUrl;
}
public void setCustomBaseUrl(String customBaseUrl) {
this.localCustomBaseUrl = customBaseUrl;
}
/**
* Build call for getRateCenterByAddress
* @param address The address to be searched (optional)
* @param country 3 letter ISO code of the country to be searched. Allowed values USA,CAN (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public okhttp3.Call getRateCenterByAddressCall(String address, String country, String areaCodeInfo, String level, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/telecomm/v1/ratecenter/byaddress";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
if (address != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("address", address));
}
if (country != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("country", country));
}
if (areaCodeInfo != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("areaCodeInfo", areaCodeInfo));
}
if (level != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("level", level));
}
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "oAuth2Password" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call getRateCenterByAddressValidateBeforeCall(String address, String country, String areaCodeInfo, String level, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getRateCenterByAddressCall(address, country, areaCodeInfo, level, _callback);
return localVarCall;
}
/**
* Rate Center By Address.
* Accepts addresses as input and returns Incumbent Local Exchange Carrier (ILEC) doing-business-as names.
* @param address The address to be searched (optional)
* @param country 3 letter ISO code of the country to be searched. Allowed values USA,CAN (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @return RateCenterResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public RateCenterResponse getRateCenterByAddress(String address, String country, String areaCodeInfo, String level) throws ApiException {
ApiResponse localVarResp = getRateCenterByAddressWithHttpInfo(address, country, areaCodeInfo, level);
return localVarResp.getData();
}
/**
* Rate Center By Address.
* Accepts addresses as input and returns Incumbent Local Exchange Carrier (ILEC) doing-business-as names.
* @param address The address to be searched (optional)
* @param country 3 letter ISO code of the country to be searched. Allowed values USA,CAN (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @return ApiResponse<RateCenterResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public ApiResponse getRateCenterByAddressWithHttpInfo(String address, String country, String areaCodeInfo, String level) throws ApiException {
okhttp3.Call localVarCall = getRateCenterByAddressValidateBeforeCall(address, country, areaCodeInfo, level, null);
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* Rate Center By Address. (asynchronously)
* Accepts addresses as input and returns Incumbent Local Exchange Carrier (ILEC) doing-business-as names.
* @param address The address to be searched (optional)
* @param country 3 letter ISO code of the country to be searched. Allowed values USA,CAN (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public okhttp3.Call getRateCenterByAddressAsync(String address, String country, String areaCodeInfo, String level, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getRateCenterByAddressValidateBeforeCall(address, country, areaCodeInfo, level, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
/**
* Build call for getRateCenterByLocation
* @param longitude Longitude of the location (optional)
* @param latitude Latitude of the location (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public okhttp3.Call getRateCenterByLocationCall(String longitude, String latitude, String areaCodeInfo, String level, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/telecomm/v1/ratecenter/bylocation";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
if (longitude != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("longitude", longitude));
}
if (latitude != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("latitude", latitude));
}
if (areaCodeInfo != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("areaCodeInfo", areaCodeInfo));
}
if (level != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("level", level));
}
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarHeaderParams != null && localVarContentTypes != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "oAuth2Password" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call getRateCenterByLocationValidateBeforeCall(String longitude, String latitude, String areaCodeInfo, String level, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getRateCenterByLocationCall(longitude, latitude, areaCodeInfo, level, _callback);
return localVarCall;
}
/**
* Rate Center By Location.
* Accepts latitude & longitude as input and returns Incumbent Local Exchange Carrier (ILEC) doing-business-as names.
* @param longitude Longitude of the location (optional)
* @param latitude Latitude of the location (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @return RateCenterResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public RateCenterResponse getRateCenterByLocation(String longitude, String latitude, String areaCodeInfo, String level) throws ApiException {
ApiResponse localVarResp = getRateCenterByLocationWithHttpInfo(longitude, latitude, areaCodeInfo, level);
return localVarResp.getData();
}
/**
* Rate Center By Location.
* Accepts latitude & longitude as input and returns Incumbent Local Exchange Carrier (ILEC) doing-business-as names.
* @param longitude Longitude of the location (optional)
* @param latitude Latitude of the location (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @return ApiResponse<RateCenterResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public ApiResponse getRateCenterByLocationWithHttpInfo(String longitude, String latitude, String areaCodeInfo, String level) throws ApiException {
okhttp3.Call localVarCall = getRateCenterByLocationValidateBeforeCall(longitude, latitude, areaCodeInfo, level, null);
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* Rate Center By Location. (asynchronously)
* Accepts latitude & longitude as input and returns Incumbent Local Exchange Carrier (ILEC) doing-business-as names.
* @param longitude Longitude of the location (optional)
* @param latitude Latitude of the location (optional)
* @param areaCodeInfo Specifies whether area code information will be part of response.Allowed values True,False. (optional)
* @param level Level (basic/detail).Allowed values detail,basic. (optional)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
* @http.response.details
Status Code
Description
Response Headers
200
OK
-
400
Bad Request
-
500
Internal Server Error
-
*/
public okhttp3.Call getRateCenterByLocationAsync(String longitude, String latitude, String areaCodeInfo, String level, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getRateCenterByLocationValidateBeforeCall(longitude, latitude, areaCodeInfo, level, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
}