diff --git a/build.gradle b/build.gradle deleted file mode 100644 index fa59c153..00000000 --- a/build.gradle +++ /dev/null @@ -1,107 +0,0 @@ -apply plugin: 'idea' -apply plugin: 'eclipse' - -group = 'com.namsor' -version = '2.0.26' - -buildscript { - repositories { - mavenCentral() - jcenter() - } - dependencies { - classpath 'com.android.tools.build:gradle:2.3.+' - classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' - } -} - -repositories { - jcenter() -} - - -if(hasProperty('target') && target == 'android') { - - apply plugin: 'com.android.library' - apply plugin: 'com.github.dcendents.android-maven' - - android { - compileSdkVersion 25 - buildToolsVersion '25.0.2' - defaultConfig { - minSdkVersion 14 - targetSdkVersion 25 - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_7 - targetCompatibility JavaVersion.VERSION_1_7 - } - - // Rename the aar correctly - libraryVariants.all { variant -> - variant.outputs.each { output -> - def outputFile = output.outputFile - if (outputFile != null && outputFile.name.endsWith('.aar')) { - def fileName = "${project.name}-${variant.baseName}-${version}.aar" - output.outputFile = new File(outputFile.parent, fileName) - } - } - } - - dependencies { - provided 'javax.annotation:jsr250-api:1.0' - } - } - - afterEvaluate { - android.libraryVariants.all { variant -> - def task = project.tasks.create "jar${variant.name.capitalize()}", Jar - task.description = "Create jar artifact for ${variant.name}" - task.dependsOn variant.javaCompile - task.from variant.javaCompile.destinationDir - task.destinationDir = project.file("${project.buildDir}/outputs/jar") - task.archiveName = "${project.name}-${variant.baseName}-${version}.jar" - artifacts.add('archives', task); - } - } - - task sourcesJar(type: Jar) { - from android.sourceSets.main.java.srcDirs - classifier = 'sources' - } - - artifacts { - archives sourcesJar - } - -} else { - - apply plugin: 'java' - apply plugin: 'maven' - - sourceCompatibility = JavaVersion.VERSION_1_7 - targetCompatibility = JavaVersion.VERSION_1_7 - - install { - repositories.mavenInstaller { - pom.artifactId = 'namsor-sdk2' - } - } - - task execute(type:JavaExec) { - main = System.getProperty('mainClass') - classpath = sourceSets.main.runtimeClasspath - } -} - -dependencies { - compile 'io.swagger:swagger-annotations:1.5.17' - compile 'com.squareup.okhttp:okhttp:2.7.5' - compile 'com.squareup.okhttp:logging-interceptor:2.7.5' - compile 'com.google.code.gson:gson:2.8.1' - compile 'io.gsonfire:gson-fire:1.8.0' - compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1' - compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1' - compile 'org.threeten:threetenbp:1.3.5' - testCompile 'junit:junit:4.12' -} diff --git a/build.sbt b/build.sbt deleted file mode 100644 index 1a98c746..00000000 --- a/build.sbt +++ /dev/null @@ -1,22 +0,0 @@ -lazy val root = (project in file(".")). - settings( - organization := "com.namsor", - name := "namsor-sdk2", - version := "2.0.26", - scalaVersion := "2.11.4", - scalacOptions ++= Seq("-feature"), - javacOptions in compile ++= Seq("-Xlint:deprecation"), - publishArtifact in (Compile, packageDoc) := false, - resolvers += Resolver.mavenLocal, - libraryDependencies ++= Seq( - "io.swagger" % "swagger-annotations" % "1.5.17", - "com.squareup.okhttp" % "okhttp" % "2.7.5", - "com.squareup.okhttp" % "logging-interceptor" % "2.7.5", - "com.google.code.gson" % "gson" % "2.8.1", - "org.apache.commons" % "commons-lang3" % "3.8.1", - "org.threeten" % "threetenbp" % "1.3.5" % "compile", - "io.gsonfire" % "gson-fire" % "1.8.0" % "compile", - "junit" % "junit" % "4.12" % "test", - "com.novocode" % "junit-interface" % "0.10" % "test" - ) - ) diff --git a/gradle.properties b/gradle.properties deleted file mode 100644 index 05644f07..00000000 --- a/gradle.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Uncomment to build for Android -#target = android \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 2c6137b8..00000000 Binary files a/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index b7a36473..00000000 --- a/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Tue May 17 23:08:05 CST 2016 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip diff --git a/gradlew b/gradlew deleted file mode 100644 index 9d82f789..00000000 --- a/gradlew +++ /dev/null @@ -1,160 +0,0 @@ -#!/usr/bin/env bash - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="" - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn ( ) { - echo "$*" -} - -die ( ) { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; -esac - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin, switch paths to Windows format before running java -if $cygwin ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=$((i+1)) - done - case $i in - (0) set -- ;; - (1) set -- "$args0" ;; - (2) set -- "$args0" "$args1" ;; - (3) set -- "$args0" "$args1" "$args2" ;; - (4) set -- "$args0" "$args1" "$args2" "$args3" ;; - (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules -function splitJvmOpts() { - JVM_OPTS=("$@") -} -eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS -JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" - -exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/gradlew.bat b/gradlew.bat deleted file mode 100644 index 5f192121..00000000 --- a/gradlew.bat +++ /dev/null @@ -1,90 +0,0 @@ -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS= - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto init - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:init -@rem Get command-line arguments, handling Windows variants - -if not "%OS%" == "Windows_NT" goto win9xME_args -if "%@eval[2+2]" == "4" goto 4NT_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* -goto execute - -:4NT_args -@rem Get arguments from the 4NT Shell from JP Software -set CMD_LINE_ARGS=%$ - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/pom.xml b/pom.xml index 4488a544..a4868737 100644 --- a/pom.xml +++ b/pom.xml @@ -228,6 +228,11 @@ threetenbp ${threetenbp-version} + + javax.annotation + javax.annotation-api + 1.3.1 + junit @@ -237,7 +242,7 @@ - 1.7 + 1.8 ${java.version} ${java.version} 1.8.0 diff --git a/pom.xml.bak b/pom_v2_0_26.xml similarity index 97% rename from pom.xml.bak rename to pom_v2_0_26.xml index 46e8f471..a4868737 100644 --- a/pom.xml.bak +++ b/pom_v2_0_26.xml @@ -5,7 +5,7 @@ namsor-sdk2 jar namsor-sdk2 - 2.0.12 + 2.0.26 https://github.com/openapitools/openapi-generator OpenAPI Java @@ -228,6 +228,11 @@ threetenbp ${threetenbp-version} + + javax.annotation + javax.annotation-api + 1.3.1 + junit @@ -237,7 +242,7 @@ - 1.7 + 1.8 ${java.version} ${java.version} 1.8.0 diff --git a/settings.gradle b/settings.gradle deleted file mode 100644 index 2973d00a..00000000 --- a/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -rootProject.name = "namsor-sdk2" \ No newline at end of file diff --git a/target/apidocs/com/namsor/sdk2/api/AdminApi.html b/target/apidocs/com/namsor/sdk2/api/AdminApi.html deleted file mode 100644 index 69636849..00000000 --- a/target/apidocs/com/namsor/sdk2/api/AdminApi.html +++ /dev/null @@ -1,1465 +0,0 @@ - - - - - - -AdminApi (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.api
-

Class AdminApi

-
-
- -
-
    -
  • -
    -
    -
    public class AdminApi
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        AdminApi

        -
        public AdminApi()
        -
      • -
      - - - -
        -
      • -

        AdminApi

        -
        public AdminApi(ApiClient apiClient)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getApiClient

        -
        public ApiClient getApiClient()
        -
      • -
      - - - -
        -
      • -

        setApiClient

        -
        public void setApiClient(ApiClient apiClient)
        -
      • -
      - - - - - - - -
        -
      • -

        anonymize

        -
        public APIKeyOut anonymize(String source,
        -                           Boolean anonymized,
        -                           String token)
        -                    throws ApiException
        -
        Activate/deactivate anonymization for a source.
        -
        -
        Parameters:
        -
        source - (required)
        -
        anonymized - (required)
        -
        token - (required)
        -
        Returns:
        -
        APIKeyOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        anonymizeWithHttpInfo

        -
        public ApiResponse<APIKeyOut> anonymizeWithHttpInfo(String source,
        -                                                    Boolean anonymized,
        -                                                    String token)
        -                                             throws ApiException
        -
        Activate/deactivate anonymization for a source.
        -
        -
        Parameters:
        -
        source - (required)
        -
        anonymized - (required)
        -
        token - (required)
        -
        Returns:
        -
        ApiResponse<APIKeyOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        anonymizeAsync

        -
        public com.squareup.okhttp.Call anonymizeAsync(String source,
        -                                               Boolean anonymized,
        -                                               String token,
        -                                               ApiCallback<APIKeyOut> callback)
        -                                        throws ApiException
        -
        Activate/deactivate anonymization for a source. (asynchronously)
        -
        -
        Parameters:
        -
        source - (required)
        -
        anonymized - (required)
        -
        token - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        apiKeyInfo

        -
        public APIKeyOut apiKeyInfo()
        -                     throws ApiException
        -
        Read API Key info.
        -
        -
        Returns:
        -
        APIKeyOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiKeyInfoWithHttpInfo

        -
        public ApiResponse<APIKeyOut> apiKeyInfoWithHttpInfo()
        -                                              throws ApiException
        -
        Read API Key info.
        -
        -
        Returns:
        -
        ApiResponse<APIKeyOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiKeyInfoAsync

        -
        public com.squareup.okhttp.Call apiKeyInfoAsync(ApiCallback<APIKeyOut> callback)
        -                                         throws ApiException
        -
        Read API Key info. (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        apiStatus

        -
        public APIClassifiersStatusOut apiStatus()
        -                                  throws ApiException
        -
        Prints the current status of the classifiers. A classifier name in apiStatus corresponds to a service name in apiServices.
        -
        -
        Returns:
        -
        APIClassifiersStatusOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiStatusWithHttpInfo

        -
        public ApiResponse<APIClassifiersStatusOut> apiStatusWithHttpInfo()
        -                                                           throws ApiException
        -
        Prints the current status of the classifiers. A classifier name in apiStatus corresponds to a service name in apiServices.
        -
        -
        Returns:
        -
        ApiResponse<APIClassifiersStatusOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiStatusAsync

        -
        public com.squareup.okhttp.Call apiStatusAsync(ApiCallback<APIClassifiersStatusOut> callback)
        -                                        throws ApiException
        -
        Prints the current status of the classifiers. A classifier name in apiStatus corresponds to a service name in apiServices. (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        apiUsage

        -
        public APIPeriodUsageOut apiUsage()
        -                           throws ApiException
        -
        Print current API usage.
        -
        -
        Returns:
        -
        APIPeriodUsageOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiUsageWithHttpInfo

        -
        public ApiResponse<APIPeriodUsageOut> apiUsageWithHttpInfo()
        -                                                    throws ApiException
        -
        Print current API usage.
        -
        -
        Returns:
        -
        ApiResponse<APIPeriodUsageOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiUsageAsync

        -
        public com.squareup.okhttp.Call apiUsageAsync(ApiCallback<APIPeriodUsageOut> callback)
        -                                       throws ApiException
        -
        Print current API usage. (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        apiUsageHistory

        -
        public APIUsageHistoryOut apiUsageHistory()
        -                                   throws ApiException
        -
        Print historical API usage.
        -
        -
        Returns:
        -
        APIUsageHistoryOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiUsageHistoryWithHttpInfo

        -
        public ApiResponse<APIUsageHistoryOut> apiUsageHistoryWithHttpInfo()
        -                                                            throws ApiException
        -
        Print historical API usage.
        -
        -
        Returns:
        -
        ApiResponse<APIUsageHistoryOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiUsageHistoryAsync

        -
        public com.squareup.okhttp.Call apiUsageHistoryAsync(ApiCallback<APIUsageHistoryOut> callback)
        -                                              throws ApiException
        -
        Print historical API usage. (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        apiUsageHistoryAggregate

        -
        public APIUsageAggregatedOut apiUsageHistoryAggregate()
        -                                               throws ApiException
        -
        Print historical API usage (in an aggregated view, by service, by day/hour/min).
        -
        -
        Returns:
        -
        APIUsageAggregatedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiUsageHistoryAggregateWithHttpInfo

        -
        public ApiResponse<APIUsageAggregatedOut> apiUsageHistoryAggregateWithHttpInfo()
        -                                                                        throws ApiException
        -
        Print historical API usage (in an aggregated view, by service, by day/hour/min).
        -
        -
        Returns:
        -
        ApiResponse<APIUsageAggregatedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        apiUsageHistoryAggregateAsync

        -
        public com.squareup.okhttp.Call apiUsageHistoryAggregateAsync(ApiCallback<APIUsageAggregatedOut> callback)
        -                                                       throws ApiException
        -
        Print historical API usage (in an aggregated view, by service, by day/hour/min). (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        availableServices

        -
        public APIServicesOut availableServices()
        -                                 throws ApiException
        -
        List of classification services and usage cost in Units per classification (default is 1=ONE Unit). Some API endpoints (ex. Corridor) combine multiple classifiers.
        -
        -
        Returns:
        -
        APIServicesOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        availableServicesWithHttpInfo

        -
        public ApiResponse<APIServicesOut> availableServicesWithHttpInfo()
        -                                                          throws ApiException
        -
        List of classification services and usage cost in Units per classification (default is 1=ONE Unit). Some API endpoints (ex. Corridor) combine multiple classifiers.
        -
        -
        Returns:
        -
        ApiResponse<APIServicesOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        availableServicesAsync

        -
        public com.squareup.okhttp.Call availableServicesAsync(ApiCallback<APIServicesOut> callback)
        -                                                throws ApiException
        -
        List of classification services and usage cost in Units per classification (default is 1=ONE Unit). Some API endpoints (ex. Corridor) combine multiple classifiers. (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        learnableCall

        -
        public com.squareup.okhttp.Call learnableCall(String source,
        -                                              Boolean learnable,
        -                                              String token,
        -                                              ProgressResponseBody.ProgressListener progressListener,
        -                                              ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                       throws ApiException
        -
        Build call for learnable
        -
        -
        Parameters:
        -
        source - The API Key to set as learnable/non learnable. (required)
        -
        learnable - (required)
        -
        token - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        learnable

        -
        public APIKeyOut learnable(String source,
        -                           Boolean learnable,
        -                           String token)
        -                    throws ApiException
        -
        Activate/deactivate learning from a source.
        -
        -
        Parameters:
        -
        source - The API Key to set as learnable/non learnable. (required)
        -
        learnable - (required)
        -
        token - (required)
        -
        Returns:
        -
        APIKeyOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        learnableWithHttpInfo

        -
        public ApiResponse<APIKeyOut> learnableWithHttpInfo(String source,
        -                                                    Boolean learnable,
        -                                                    String token)
        -                                             throws ApiException
        -
        Activate/deactivate learning from a source.
        -
        -
        Parameters:
        -
        source - The API Key to set as learnable/non learnable. (required)
        -
        learnable - (required)
        -
        token - (required)
        -
        Returns:
        -
        ApiResponse<APIKeyOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        learnableAsync

        -
        public com.squareup.okhttp.Call learnableAsync(String source,
        -                                               Boolean learnable,
        -                                               String token,
        -                                               ApiCallback<APIKeyOut> callback)
        -                                        throws ApiException
        -
        Activate/deactivate learning from a source. (asynchronously)
        -
        -
        Parameters:
        -
        source - The API Key to set as learnable/non learnable. (required)
        -
        learnable - (required)
        -
        token - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        regions

        -
        public RegionOut regions()
        -                  throws ApiException
        -
        Print basic source statistics.
        -
        -
        Returns:
        -
        RegionOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        regionsWithHttpInfo

        -
        public ApiResponse<RegionOut> regionsWithHttpInfo()
        -                                           throws ApiException
        -
        Print basic source statistics.
        -
        -
        Returns:
        -
        ApiResponse<RegionOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        regionsAsync

        -
        public com.squareup.okhttp.Call regionsAsync(ApiCallback<RegionOut> callback)
        -                                      throws ApiException
        -
        Print basic source statistics. (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        softwareVersion

        -
        public SoftwareVersionOut softwareVersion()
        -                                   throws ApiException
        -
        Get the current software version
        -
        -
        Returns:
        -
        SoftwareVersionOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        softwareVersionWithHttpInfo

        -
        public ApiResponse<SoftwareVersionOut> softwareVersionWithHttpInfo()
        -                                                            throws ApiException
        -
        Get the current software version
        -
        -
        Returns:
        -
        ApiResponse<SoftwareVersionOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        softwareVersionAsync

        -
        public com.squareup.okhttp.Call softwareVersionAsync(ApiCallback<SoftwareVersionOut> callback)
        -                                              throws ApiException
        -
        Get the current software version (asynchronously)
        -
        -
        Parameters:
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        taxonomyClasses

        -
        public APIClassifierTaxonomyOut taxonomyClasses(String classifierName)
        -                                         throws ApiException
        -
        Print the taxonomy classes valid for the given classifier.
        -
        -
        Parameters:
        -
        classifierName - (required)
        -
        Returns:
        -
        APIClassifierTaxonomyOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        taxonomyClassesWithHttpInfo

        -
        public ApiResponse<APIClassifierTaxonomyOut> taxonomyClassesWithHttpInfo(String classifierName)
        -                                                                  throws ApiException
        -
        Print the taxonomy classes valid for the given classifier.
        -
        -
        Parameters:
        -
        classifierName - (required)
        -
        Returns:
        -
        ApiResponse<APIClassifierTaxonomyOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        taxonomyClassesAsync

        -
        public com.squareup.okhttp.Call taxonomyClassesAsync(String classifierName,
        -                                                     ApiCallback<APIClassifierTaxonomyOut> callback)
        -                                              throws ApiException
        -
        Print the taxonomy classes valid for the given classifier. (asynchronously)
        -
        -
        Parameters:
        -
        classifierName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/api/ChineseApi.html b/target/apidocs/com/namsor/sdk2/api/ChineseApi.html deleted file mode 100644 index d58b00c1..00000000 --- a/target/apidocs/com/namsor/sdk2/api/ChineseApi.html +++ /dev/null @@ -1,1896 +0,0 @@ - - - - - - -ChineseApi (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.api
-

Class ChineseApi

-
-
- -
-
    -
  • -
    -
    -
    public class ChineseApi
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ChineseApi

        -
        public ChineseApi()
        -
      • -
      - - - -
        -
      • -

        ChineseApi

        -
        public ChineseApi(ApiClient apiClient)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getApiClient

        -
        public ApiClient getApiClient()
        -
      • -
      - - - -
        -
      • -

        setApiClient

        -
        public void setApiClient(ApiClient apiClient)
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesCall

        -
        public com.squareup.okhttp.Call chineseNameCandidatesCall(String chineseSurnameLatin,
        -                                                          String chineseGivenNameLatin,
        -                                                          ProgressResponseBody.ProgressListener progressListener,
        -                                                          ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                   throws ApiException
        -
        Build call for chineseNameCandidates
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidates

        -
        public NameMatchCandidatesOut chineseNameCandidates(String chineseSurnameLatin,
        -                                                    String chineseGivenNameLatin)
        -                                             throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        Returns:
        -
        NameMatchCandidatesOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesWithHttpInfo

        -
        public ApiResponse<NameMatchCandidatesOut> chineseNameCandidatesWithHttpInfo(String chineseSurnameLatin,
        -                                                                             String chineseGivenNameLatin)
        -                                                                      throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        Returns:
        -
        ApiResponse<NameMatchCandidatesOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesAsync

        -
        public com.squareup.okhttp.Call chineseNameCandidatesAsync(String chineseSurnameLatin,
        -                                                           String chineseGivenNameLatin,
        -                                                           ApiCallback<NameMatchCandidatesOut> callback)
        -                                                    throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming (asynchronously)
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesBatchCall

        -
        public com.squareup.okhttp.Call chineseNameCandidatesBatchCall(BatchFirstLastNameIn batchFirstLastNameIn,
        -                                                               ProgressResponseBody.ProgressListener progressListener,
        -                                                               ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                        throws ApiException
        -
        Build call for chineseNameCandidatesBatch
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesBatch

        -
        public BatchNameMatchCandidatesOut chineseNameCandidatesBatch(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                                       throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        Returns:
        -
        BatchNameMatchCandidatesOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesBatchWithHttpInfo

        -
        public ApiResponse<BatchNameMatchCandidatesOut> chineseNameCandidatesBatchWithHttpInfo(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                                                                throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        Returns:
        -
        ApiResponse<BatchNameMatchCandidatesOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesBatchAsync

        -
        public com.squareup.okhttp.Call chineseNameCandidatesBatchAsync(BatchFirstLastNameIn batchFirstLastNameIn,
        -                                                                ApiCallback<BatchNameMatchCandidatesOut> callback)
        -                                                         throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesGenderBatchCall

        -
        public com.squareup.okhttp.Call chineseNameCandidatesGenderBatchCall(BatchFirstLastNameGenderIn batchFirstLastNameGenderIn,
        -                                                                     ProgressResponseBody.ProgressListener progressListener,
        -                                                                     ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                              throws ApiException
        -
        Build call for chineseNameCandidatesGenderBatch
        -
        -
        Parameters:
        -
        batchFirstLastNameGenderIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesGenderBatch

        -
        public BatchNameMatchCandidatesOut chineseNameCandidatesGenderBatch(BatchFirstLastNameGenderIn batchFirstLastNameGenderIn)
        -                                                             throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname) ex. Wang Xiaoming.
        -
        -
        Parameters:
        -
        batchFirstLastNameGenderIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        Returns:
        -
        BatchNameMatchCandidatesOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesGenderBatchWithHttpInfo

        -
        public ApiResponse<BatchNameMatchCandidatesOut> chineseNameCandidatesGenderBatchWithHttpInfo(BatchFirstLastNameGenderIn batchFirstLastNameGenderIn)
        -                                                                                      throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname) ex. Wang Xiaoming.
        -
        -
        Parameters:
        -
        batchFirstLastNameGenderIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        Returns:
        -
        ApiResponse<BatchNameMatchCandidatesOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameCandidatesGenderBatchAsync

        -
        public com.squareup.okhttp.Call chineseNameCandidatesGenderBatchAsync(BatchFirstLastNameGenderIn batchFirstLastNameGenderIn,
        -                                                                      ApiCallback<BatchNameMatchCandidatesOut> callback)
        -                                                               throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname) ex. Wang Xiaoming. (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameGenderIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameGenderCandidatesCall

        -
        public com.squareup.okhttp.Call chineseNameGenderCandidatesCall(String chineseSurnameLatin,
        -                                                                String chineseGivenNameLatin,
        -                                                                String knownGender,
        -                                                                ProgressResponseBody.ProgressListener progressListener,
        -                                                                ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                         throws ApiException
        -
        Build call for chineseNameGenderCandidates
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        knownGender - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameGenderCandidates

        -
        public NameMatchCandidatesOut chineseNameGenderCandidates(String chineseSurnameLatin,
        -                                                          String chineseGivenNameLatin,
        -                                                          String knownGender)
        -                                                   throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming - having a known gender ('male' or 'female')
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        knownGender - (required)
        -
        Returns:
        -
        NameMatchCandidatesOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameGenderCandidatesWithHttpInfo

        -
        public ApiResponse<NameMatchCandidatesOut> chineseNameGenderCandidatesWithHttpInfo(String chineseSurnameLatin,
        -                                                                                   String chineseGivenNameLatin,
        -                                                                                   String knownGender)
        -                                                                            throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming - having a known gender ('male' or 'female')
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        knownGender - (required)
        -
        Returns:
        -
        ApiResponse<NameMatchCandidatesOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameGenderCandidatesAsync

        -
        public com.squareup.okhttp.Call chineseNameGenderCandidatesAsync(String chineseSurnameLatin,
        -                                                                 String chineseGivenNameLatin,
        -                                                                 String knownGender,
        -                                                                 ApiCallback<NameMatchCandidatesOut> callback)
        -                                                          throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming - having a known gender ('male' or 'female') (asynchronously)
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        knownGender - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchCall

        -
        public com.squareup.okhttp.Call chineseNameMatchCall(String chineseSurnameLatin,
        -                                                     String chineseGivenNameLatin,
        -                                                     String chineseName,
        -                                                     ProgressResponseBody.ProgressListener progressListener,
        -                                                     ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                              throws ApiException
        -
        Build call for chineseNameMatch
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        chineseName - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatch

        -
        public NameMatchedOut chineseNameMatch(String chineseSurnameLatin,
        -                                       String chineseGivenNameLatin,
        -                                       String chineseName)
        -                                throws ApiException
        -
        Return a score for matching Chinese name ex. 王晓明 with a romanized name ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        chineseName - (required)
        -
        Returns:
        -
        NameMatchedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchWithHttpInfo

        -
        public ApiResponse<NameMatchedOut> chineseNameMatchWithHttpInfo(String chineseSurnameLatin,
        -                                                                String chineseGivenNameLatin,
        -                                                                String chineseName)
        -                                                         throws ApiException
        -
        Return a score for matching Chinese name ex. 王晓明 with a romanized name ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        chineseName - (required)
        -
        Returns:
        -
        ApiResponse<NameMatchedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchAsync

        -
        public com.squareup.okhttp.Call chineseNameMatchAsync(String chineseSurnameLatin,
        -                                                      String chineseGivenNameLatin,
        -                                                      String chineseName,
        -                                                      ApiCallback<NameMatchedOut> callback)
        -                                               throws ApiException
        -
        Return a score for matching Chinese name ex. 王晓明 with a romanized name ex. Wang Xiaoming (asynchronously)
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        chineseName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchBatchCall

        -
        public com.squareup.okhttp.Call chineseNameMatchBatchCall(BatchMatchPersonalFirstLastNameIn batchMatchPersonalFirstLastNameIn,
        -                                                          ProgressResponseBody.ProgressListener progressListener,
        -                                                          ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                   throws ApiException
        -
        Build call for chineseNameMatchBatch
        -
        -
        Parameters:
        -
        batchMatchPersonalFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchBatch

        -
        public BatchNameMatchedOut chineseNameMatchBatch(BatchMatchPersonalFirstLastNameIn batchMatchPersonalFirstLastNameIn)
        -                                          throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        batchMatchPersonalFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        Returns:
        -
        BatchNameMatchedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchBatchWithHttpInfo

        -
        public ApiResponse<BatchNameMatchedOut> chineseNameMatchBatchWithHttpInfo(BatchMatchPersonalFirstLastNameIn batchMatchPersonalFirstLastNameIn)
        -                                                                   throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming
        -
        -
        Parameters:
        -
        batchMatchPersonalFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        Returns:
        -
        ApiResponse<BatchNameMatchedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        chineseNameMatchBatchAsync

        -
        public com.squareup.okhttp.Call chineseNameMatchBatchAsync(BatchMatchPersonalFirstLastNameIn batchMatchPersonalFirstLastNameIn,
        -                                                           ApiCallback<BatchNameMatchedOut> callback)
        -                                                    throws ApiException
        -
        Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming (asynchronously)
        -
        -
        Parameters:
        -
        batchMatchPersonalFirstLastNameIn - A list of personal Chinese names in LATIN, firstName = chineseGivenName; lastName=chineseSurname (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderChineseName

        -
        public PersonalNameGenderedOut genderChineseName(String chineseName)
        -                                          throws ApiException
        -
        Infer the likely gender of a Chinese full name ex. 王晓明
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        Returns:
        -
        PersonalNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNameWithHttpInfo

        -
        public ApiResponse<PersonalNameGenderedOut> genderChineseNameWithHttpInfo(String chineseName)
        -                                                                   throws ApiException
        -
        Infer the likely gender of a Chinese full name ex. 王晓明
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNameAsync

        -
        public com.squareup.okhttp.Call genderChineseNameAsync(String chineseName,
        -                                                       ApiCallback<PersonalNameGenderedOut> callback)
        -                                                throws ApiException
        -
        Infer the likely gender of a Chinese full name ex. 王晓明 (asynchronously)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNameBatchCall

        -
        public com.squareup.okhttp.Call genderChineseNameBatchCall(BatchPersonalNameIn batchPersonalNameIn,
        -                                                           ProgressResponseBody.ProgressListener progressListener,
        -                                                           ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                    throws ApiException
        -
        Build call for genderChineseNameBatch
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names, with a country ISO2 code (optional)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNameBatch

        -
        public BatchPersonalNameGenderedOut genderChineseNameBatch(BatchPersonalNameIn batchPersonalNameIn)
        -                                                    throws ApiException
        -
        Infer the likely gender of up to 100 full names ex. 王晓明
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names, with a country ISO2 code (optional)
        -
        Returns:
        -
        BatchPersonalNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNameBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameGenderedOut> genderChineseNameBatchWithHttpInfo(BatchPersonalNameIn batchPersonalNameIn)
        -                                                                             throws ApiException
        -
        Infer the likely gender of up to 100 full names ex. 王晓明
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names, with a country ISO2 code (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNameBatchAsync

        -
        public com.squareup.okhttp.Call genderChineseNameBatchAsync(BatchPersonalNameIn batchPersonalNameIn,
        -                                                            ApiCallback<BatchPersonalNameGenderedOut> callback)
        -                                                     throws ApiException
        -
        Infer the likely gender of up to 100 full names ex. 王晓明 (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names, with a country ISO2 code (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinCall

        -
        public com.squareup.okhttp.Call genderChineseNamePinyinCall(String chineseSurnameLatin,
        -                                                            String chineseGivenNameLatin,
        -                                                            ProgressResponseBody.ProgressListener progressListener,
        -                                                            ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                     throws ApiException
        -
        Build call for genderChineseNamePinyin
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyin

        -
        public FirstLastNameGenderedOut genderChineseNamePinyin(String chineseSurnameLatin,
        -                                                        String chineseGivenNameLatin)
        -                                                 throws ApiException
        -
        Infer the likely gender of a Chinese name in LATIN (Pinyin).
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        Returns:
        -
        FirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinWithHttpInfo

        -
        public ApiResponse<FirstLastNameGenderedOut> genderChineseNamePinyinWithHttpInfo(String chineseSurnameLatin,
        -                                                                                 String chineseGivenNameLatin)
        -                                                                          throws ApiException
        -
        Infer the likely gender of a Chinese name in LATIN (Pinyin).
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinAsync

        -
        public com.squareup.okhttp.Call genderChineseNamePinyinAsync(String chineseSurnameLatin,
        -                                                             String chineseGivenNameLatin,
        -                                                             ApiCallback<FirstLastNameGenderedOut> callback)
        -                                                      throws ApiException
        -
        Infer the likely gender of a Chinese name in LATIN (Pinyin). (asynchronously)
        -
        -
        Parameters:
        -
        chineseSurnameLatin - (required)
        -
        chineseGivenNameLatin - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinBatchCall

        -
        public com.squareup.okhttp.Call genderChineseNamePinyinBatchCall(BatchFirstLastNameIn batchFirstLastNameIn,
        -                                                                 ProgressResponseBody.ProgressListener progressListener,
        -                                                                 ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                          throws ApiException
        -
        Build call for genderChineseNamePinyinBatch
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of names, with country code. (optional)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinBatch

        -
        public BatchFirstLastNameGenderedOut genderChineseNamePinyinBatch(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                                           throws ApiException
        -
        Infer the likely gender of up to 100 Chinese names in LATIN (Pinyin).
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of names, with country code. (optional)
        -
        Returns:
        -
        BatchFirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameGenderedOut> genderChineseNamePinyinBatchWithHttpInfo(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                                                                    throws ApiException
        -
        Infer the likely gender of up to 100 Chinese names in LATIN (Pinyin).
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of names, with country code. (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderChineseNamePinyinBatchAsync

        -
        public com.squareup.okhttp.Call genderChineseNamePinyinBatchAsync(BatchFirstLastNameIn batchFirstLastNameIn,
        -                                                                  ApiCallback<BatchFirstLastNameGenderedOut> callback)
        -                                                           throws ApiException
        -
        Infer the likely gender of up to 100 Chinese names in LATIN (Pinyin). (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of names, with country code. (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        parseChineseName

        -
        public PersonalNameParsedOut parseChineseName(String chineseName)
        -                                       throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        Returns:
        -
        PersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseChineseNameWithHttpInfo

        -
        public ApiResponse<PersonalNameParsedOut> parseChineseNameWithHttpInfo(String chineseName)
        -                                                                throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseChineseNameAsync

        -
        public com.squareup.okhttp.Call parseChineseNameAsync(String chineseName,
        -                                                      ApiCallback<PersonalNameParsedOut> callback)
        -                                               throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name) (asynchronously)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        parseChineseNameBatch

        -
        public BatchPersonalNameParsedOut parseChineseNameBatch(BatchPersonalNameIn batchPersonalNameIn)
        -                                                 throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name).
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseChineseNameBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameParsedOut> parseChineseNameBatchWithHttpInfo(BatchPersonalNameIn batchPersonalNameIn)
        -                                                                          throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name).
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseChineseNameBatchAsync

        -
        public com.squareup.okhttp.Call parseChineseNameBatchAsync(BatchPersonalNameIn batchPersonalNameIn,
        -                                                           ApiCallback<BatchPersonalNameParsedOut> callback)
        -                                                    throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name). (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        pinyinChineseName

        -
        public PersonalNameParsedOut pinyinChineseName(String chineseName)
        -                                        throws ApiException
        -
        Romanize the Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        Returns:
        -
        PersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        pinyinChineseNameWithHttpInfo

        -
        public ApiResponse<PersonalNameParsedOut> pinyinChineseNameWithHttpInfo(String chineseName)
        -                                                                 throws ApiException
        -
        Romanize the Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        pinyinChineseNameAsync

        -
        public com.squareup.okhttp.Call pinyinChineseNameAsync(String chineseName,
        -                                                       ApiCallback<PersonalNameParsedOut> callback)
        -                                                throws ApiException
        -
        Romanize the Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name) (asynchronously)
        -
        -
        Parameters:
        -
        chineseName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        pinyinChineseNameBatch

        -
        public BatchPersonalNameParsedOut pinyinChineseNameBatch(BatchPersonalNameIn batchPersonalNameIn)
        -                                                  throws ApiException
        -
        Romanize a list of Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name).
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of Chinese names (optional)
        -
        Returns:
        -
        BatchPersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        pinyinChineseNameBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameParsedOut> pinyinChineseNameBatchWithHttpInfo(BatchPersonalNameIn batchPersonalNameIn)
        -                                                                           throws ApiException
        -
        Romanize a list of Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name).
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of Chinese names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        pinyinChineseNameBatchAsync

        -
        public com.squareup.okhttp.Call pinyinChineseNameBatchAsync(BatchPersonalNameIn batchPersonalNameIn,
        -                                                            ApiCallback<BatchPersonalNameParsedOut> callback)
        -                                                     throws ApiException
        -
        Romanize a list of Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name). (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of Chinese names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/api/PersonalApi.html b/target/apidocs/com/namsor/sdk2/api/PersonalApi.html deleted file mode 100644 index ccb4fe6b..00000000 --- a/target/apidocs/com/namsor/sdk2/api/PersonalApi.html +++ /dev/null @@ -1,3929 +0,0 @@ - - - - - - -PersonalApi (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.api
-

Class PersonalApi

-
-
- -
-
    -
  • -
    -
    -
    public class PersonalApi
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        PersonalApi

        -
        public PersonalApi()
        -
      • -
      - - - -
        -
      • -

        PersonalApi

        -
        public PersonalApi(ApiClient apiClient)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getApiClient

        -
        public ApiClient getApiClient()
        -
      • -
      - - - -
        -
      • -

        setApiClient

        -
        public void setApiClient(ApiClient apiClient)
        -
      • -
      - - - -
        -
      • -

        corridorCall

        -
        public com.squareup.okhttp.Call corridorCall(String countryIso2From,
        -                                             String firstNameFrom,
        -                                             String lastNameFrom,
        -                                             String countryIso2To,
        -                                             String firstNameTo,
        -                                             String lastNameTo,
        -                                             ProgressResponseBody.ProgressListener progressListener,
        -                                             ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                      throws ApiException
        -
        Build call for corridor
        -
        -
        Parameters:
        -
        countryIso2From - (required)
        -
        firstNameFrom - (required)
        -
        lastNameFrom - (required)
        -
        countryIso2To - (required)
        -
        firstNameTo - (required)
        -
        lastNameTo - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        corridor

        -
        public CorridorOut corridor(String countryIso2From,
        -                            String firstNameFrom,
        -                            String lastNameFrom,
        -                            String countryIso2To,
        -                            String firstNameTo,
        -                            String lastNameTo)
        -                     throws ApiException
        -
        [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com)
        -
        -
        Parameters:
        -
        countryIso2From - (required)
        -
        firstNameFrom - (required)
        -
        lastNameFrom - (required)
        -
        countryIso2To - (required)
        -
        firstNameTo - (required)
        -
        lastNameTo - (required)
        -
        Returns:
        -
        CorridorOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        corridorWithHttpInfo

        -
        public ApiResponse<CorridorOut> corridorWithHttpInfo(String countryIso2From,
        -                                                     String firstNameFrom,
        -                                                     String lastNameFrom,
        -                                                     String countryIso2To,
        -                                                     String firstNameTo,
        -                                                     String lastNameTo)
        -                                              throws ApiException
        -
        [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com)
        -
        -
        Parameters:
        -
        countryIso2From - (required)
        -
        firstNameFrom - (required)
        -
        lastNameFrom - (required)
        -
        countryIso2To - (required)
        -
        firstNameTo - (required)
        -
        lastNameTo - (required)
        -
        Returns:
        -
        ApiResponse<CorridorOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        corridorAsync

        -
        public com.squareup.okhttp.Call corridorAsync(String countryIso2From,
        -                                              String firstNameFrom,
        -                                              String lastNameFrom,
        -                                              String countryIso2To,
        -                                              String firstNameTo,
        -                                              String lastNameTo,
        -                                              ApiCallback<CorridorOut> callback)
        -                                       throws ApiException
        -
        [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com) (asynchronously)
        -
        -
        Parameters:
        -
        countryIso2From - (required)
        -
        firstNameFrom - (required)
        -
        lastNameFrom - (required)
        -
        countryIso2To - (required)
        -
        firstNameTo - (required)
        -
        lastNameTo - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        corridorBatch

        -
        public BatchCorridorOut corridorBatch(BatchCorridorIn batchCorridorIn)
        -                               throws ApiException
        -
        [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com)
        -
        -
        Parameters:
        -
        batchCorridorIn - A list of name pairs, with country code (nameFrom -> nameTo). (optional)
        -
        Returns:
        -
        BatchCorridorOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        corridorBatchWithHttpInfo

        -
        public ApiResponse<BatchCorridorOut> corridorBatchWithHttpInfo(BatchCorridorIn batchCorridorIn)
        -                                                        throws ApiException
        -
        [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com)
        -
        -
        Parameters:
        -
        batchCorridorIn - A list of name pairs, with country code (nameFrom -> nameTo). (optional)
        -
        Returns:
        -
        ApiResponse<BatchCorridorOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        corridorBatchAsync

        -
        public com.squareup.okhttp.Call corridorBatchAsync(BatchCorridorIn batchCorridorIn,
        -                                                   ApiCallback<BatchCorridorOut> callback)
        -                                            throws ApiException
        -
        [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com) (asynchronously)
        -
        -
        Parameters:
        -
        batchCorridorIn - A list of name pairs, with country code (nameFrom -> nameTo). (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        country

        -
        public PersonalNameGeoOut country(String personalNameFull)
        -                           throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin.
        -
        -
        Parameters:
        -
        personalNameFull - (required)
        -
        Returns:
        -
        PersonalNameGeoOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        countryWithHttpInfo

        -
        public ApiResponse<PersonalNameGeoOut> countryWithHttpInfo(String personalNameFull)
        -                                                    throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin.
        -
        -
        Parameters:
        -
        personalNameFull - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameGeoOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        countryAsync

        -
        public com.squareup.okhttp.Call countryAsync(String personalNameFull,
        -                                             ApiCallback<PersonalNameGeoOut> callback)
        -                                      throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. (asynchronously)
        -
        -
        Parameters:
        -
        personalNameFull - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        countryBatch

        -
        public BatchPersonalNameGeoOut countryBatch(BatchPersonalNameIn batchPersonalNameIn)
        -                                     throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin.
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameGeoOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        countryBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameGeoOut> countryBatchWithHttpInfo(BatchPersonalNameIn batchPersonalNameIn)
        -                                                              throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin.
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameGeoOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        countryBatchAsync

        -
        public com.squareup.okhttp.Call countryBatchAsync(BatchPersonalNameIn batchPersonalNameIn,
        -                                                  ApiCallback<BatchPersonalNameGeoOut> callback)
        -                                           throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        diaspora

        -
        public FirstLastNameDiasporaedOut diaspora(String countryIso2,
        -                                           String firstName,
        -                                           String lastName)
        -                                    throws ApiException
        -
        [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.)
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        FirstLastNameDiasporaedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        diasporaWithHttpInfo

        -
        public ApiResponse<FirstLastNameDiasporaedOut> diasporaWithHttpInfo(String countryIso2,
        -                                                                    String firstName,
        -                                                                    String lastName)
        -                                                             throws ApiException
        -
        [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.)
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameDiasporaedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        diasporaAsync

        -
        public com.squareup.okhttp.Call diasporaAsync(String countryIso2,
        -                                              String firstName,
        -                                              String lastName,
        -                                              ApiCallback<FirstLastNameDiasporaedOut> callback)
        -                                       throws ApiException
        -
        [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) (asynchronously)
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        diasporaBatch

        -
        public BatchFirstLastNameDiasporaedOut diasporaBatch(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                              throws ApiException
        -
        [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNameDiasporaedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        diasporaBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameDiasporaedOut> diasporaBatchWithHttpInfo(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                                                       throws ApiException
        -
        [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameDiasporaedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        diasporaBatchAsync

        -
        public com.squareup.okhttp.Call diasporaBatchAsync(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn,
        -                                                   ApiCallback<BatchFirstLastNameDiasporaedOut> callback)
        -                                            throws ApiException
        -
        [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        gender

        -
        public FirstLastNameGenderedOut gender(String firstName,
        -                                       String lastName)
        -                                throws ApiException
        -
        Infer the likely gender of a name.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        FirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderWithHttpInfo

        -
        public ApiResponse<FirstLastNameGenderedOut> genderWithHttpInfo(String firstName,
        -                                                                String lastName)
        -                                                         throws ApiException
        -
        Infer the likely gender of a name.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderAsync

        -
        public com.squareup.okhttp.Call genderAsync(String firstName,
        -                                            String lastName,
        -                                            ApiCallback<FirstLastNameGenderedOut> callback)
        -                                     throws ApiException
        -
        Infer the likely gender of a name. (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        gender1

        -
        public FirstLastNameGenderedOut gender1(String firstName)
        -                                 throws ApiException
        -
        Infer the likely gender of a just a fiven name, assuming default 'US' local context. Please use preferably full names and local geographic context for better accuracy.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        Returns:
        -
        FirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        gender1WithHttpInfo

        -
        public ApiResponse<FirstLastNameGenderedOut> gender1WithHttpInfo(String firstName)
        -                                                          throws ApiException
        -
        Infer the likely gender of a just a fiven name, assuming default 'US' local context. Please use preferably full names and local geographic context for better accuracy.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        gender1Async

        -
        public com.squareup.okhttp.Call gender1Async(String firstName,
        -                                             ApiCallback<FirstLastNameGenderedOut> callback)
        -                                      throws ApiException
        -
        Infer the likely gender of a just a fiven name, assuming default 'US' local context. Please use preferably full names and local geographic context for better accuracy. (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderBatch

        -
        public BatchFirstLastNameGenderedOut genderBatch(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                          throws ApiException
        -
        Infer the likely gender of up to 100 names, detecting automatically the cultural context.
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameGenderedOut> genderBatchWithHttpInfo(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                                                   throws ApiException
        -
        Infer the likely gender of up to 100 names, detecting automatically the cultural context.
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderBatchAsync

        -
        public com.squareup.okhttp.Call genderBatchAsync(BatchFirstLastNameIn batchFirstLastNameIn,
        -                                                 ApiCallback<BatchFirstLastNameGenderedOut> callback)
        -                                          throws ApiException
        -
        Infer the likely gender of up to 100 names, detecting automatically the cultural context. (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderFull

        -
        public PersonalNameGenderedOut genderFull(String fullName)
        -                                   throws ApiException
        -
        Infer the likely gender of a full name, ex. John H. Smith
        -
        -
        Parameters:
        -
        fullName - (required)
        -
        Returns:
        -
        PersonalNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullWithHttpInfo

        -
        public ApiResponse<PersonalNameGenderedOut> genderFullWithHttpInfo(String fullName)
        -                                                            throws ApiException
        -
        Infer the likely gender of a full name, ex. John H. Smith
        -
        -
        Parameters:
        -
        fullName - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullAsync

        -
        public com.squareup.okhttp.Call genderFullAsync(String fullName,
        -                                                ApiCallback<PersonalNameGenderedOut> callback)
        -                                         throws ApiException
        -
        Infer the likely gender of a full name, ex. John H. Smith (asynchronously)
        -
        -
        Parameters:
        -
        fullName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderFullBatch

        -
        public BatchPersonalNameGenderedOut genderFullBatch(BatchPersonalNameIn batchPersonalNameIn)
        -                                             throws ApiException
        -
        Infer the likely gender of up to 100 full names, detecting automatically the cultural context.
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameGenderedOut> genderFullBatchWithHttpInfo(BatchPersonalNameIn batchPersonalNameIn)
        -                                                                      throws ApiException
        -
        Infer the likely gender of up to 100 full names, detecting automatically the cultural context.
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullBatchAsync

        -
        public com.squareup.okhttp.Call genderFullBatchAsync(BatchPersonalNameIn batchPersonalNameIn,
        -                                                     ApiCallback<BatchPersonalNameGenderedOut> callback)
        -                                              throws ApiException
        -
        Infer the likely gender of up to 100 full names, detecting automatically the cultural context. (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderFullGeo

        -
        public PersonalNameGenderedOut genderFullGeo(String fullName,
        -                                             String countryIso2)
        -                                      throws ApiException
        -
        Infer the likely gender of a full name, given a local context (ISO2 country code).
        -
        -
        Parameters:
        -
        fullName - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        PersonalNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullGeoWithHttpInfo

        -
        public ApiResponse<PersonalNameGenderedOut> genderFullGeoWithHttpInfo(String fullName,
        -                                                                      String countryIso2)
        -                                                               throws ApiException
        -
        Infer the likely gender of a full name, given a local context (ISO2 country code).
        -
        -
        Parameters:
        -
        fullName - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullGeoAsync

        -
        public com.squareup.okhttp.Call genderFullGeoAsync(String fullName,
        -                                                   String countryIso2,
        -                                                   ApiCallback<PersonalNameGenderedOut> callback)
        -                                            throws ApiException
        -
        Infer the likely gender of a full name, given a local context (ISO2 country code). (asynchronously)
        -
        -
        Parameters:
        -
        fullName - (required)
        -
        countryIso2 - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderFullGeoBatch

        -
        public BatchPersonalNameGenderedOut genderFullGeoBatch(BatchPersonalNameGeoIn batchPersonalNameGeoIn)
        -                                                throws ApiException
        -
        Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code).
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names, with a country ISO2 code (optional)
        -
        Returns:
        -
        BatchPersonalNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullGeoBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameGenderedOut> genderFullGeoBatchWithHttpInfo(BatchPersonalNameGeoIn batchPersonalNameGeoIn)
        -                                                                         throws ApiException
        -
        Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code).
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names, with a country ISO2 code (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderFullGeoBatchAsync

        -
        public com.squareup.okhttp.Call genderFullGeoBatchAsync(BatchPersonalNameGeoIn batchPersonalNameGeoIn,
        -                                                        ApiCallback<BatchPersonalNameGenderedOut> callback)
        -                                                 throws ApiException
        -
        Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names, with a country ISO2 code (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderGeo

        -
        public FirstLastNameGenderedOut genderGeo(String firstName,
        -                                          String lastName,
        -                                          String countryIso2)
        -                                   throws ApiException
        -
        Infer the likely gender of a name, given a local context (ISO2 country code).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        FirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderGeoWithHttpInfo

        -
        public ApiResponse<FirstLastNameGenderedOut> genderGeoWithHttpInfo(String firstName,
        -                                                                   String lastName,
        -                                                                   String countryIso2)
        -                                                            throws ApiException
        -
        Infer the likely gender of a name, given a local context (ISO2 country code).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderGeoAsync

        -
        public com.squareup.okhttp.Call genderGeoAsync(String firstName,
        -                                               String lastName,
        -                                               String countryIso2,
        -                                               ApiCallback<FirstLastNameGenderedOut> callback)
        -                                        throws ApiException
        -
        Infer the likely gender of a name, given a local context (ISO2 country code). (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        countryIso2 - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        genderGeoBatch

        -
        public BatchFirstLastNameGenderedOut genderGeoBatch(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                             throws ApiException
        -
        Infer the likely gender of up to 100 names, each given a local context (ISO2 country code).
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of names, with country code. (optional)
        -
        Returns:
        -
        BatchFirstLastNameGenderedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderGeoBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameGenderedOut> genderGeoBatchWithHttpInfo(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                                                      throws ApiException
        -
        Infer the likely gender of up to 100 names, each given a local context (ISO2 country code).
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of names, with country code. (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameGenderedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        genderGeoBatchAsync

        -
        public com.squareup.okhttp.Call genderGeoBatchAsync(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn,
        -                                                    ApiCallback<BatchFirstLastNameGenderedOut> callback)
        -                                             throws ApiException
        -
        Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of names, with country code. (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        origin

        -
        public FirstLastNameOriginedOut origin(String firstName,
        -                                       String lastName)
        -                                throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        FirstLastNameOriginedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        originWithHttpInfo

        -
        public ApiResponse<FirstLastNameOriginedOut> originWithHttpInfo(String firstName,
        -                                                                String lastName)
        -                                                         throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameOriginedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        originAsync

        -
        public com.squareup.okhttp.Call originAsync(String firstName,
        -                                            String lastName,
        -                                            ApiCallback<FirstLastNameOriginedOut> callback)
        -                                     throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        originBatch

        -
        public BatchFirstLastNameOriginedOut originBatch(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                          throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context.
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNameOriginedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        originBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameOriginedOut> originBatchWithHttpInfo(BatchFirstLastNameIn batchFirstLastNameIn)
        -                                                                   throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context.
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameOriginedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        originBatchAsync

        -
        public com.squareup.okhttp.Call originBatchAsync(BatchFirstLastNameIn batchFirstLastNameIn,
        -                                                 ApiCallback<BatchFirstLastNameOriginedOut> callback)
        -                                          throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        parseName

        -
        public PersonalNameParsedOut parseName(String nameFull)
        -                                throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John.
        -
        -
        Parameters:
        -
        nameFull - (required)
        -
        Returns:
        -
        PersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameWithHttpInfo

        -
        public ApiResponse<PersonalNameParsedOut> parseNameWithHttpInfo(String nameFull)
        -                                                         throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John.
        -
        -
        Parameters:
        -
        nameFull - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameAsync

        -
        public com.squareup.okhttp.Call parseNameAsync(String nameFull,
        -                                               ApiCallback<PersonalNameParsedOut> callback)
        -                                        throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. (asynchronously)
        -
        -
        Parameters:
        -
        nameFull - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        parseNameBatch

        -
        public BatchPersonalNameParsedOut parseNameBatch(BatchPersonalNameIn batchPersonalNameIn)
        -                                          throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John.
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameParsedOut> parseNameBatchWithHttpInfo(BatchPersonalNameIn batchPersonalNameIn)
        -                                                                   throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John.
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameBatchAsync

        -
        public com.squareup.okhttp.Call parseNameBatchAsync(BatchPersonalNameIn batchPersonalNameIn,
        -                                                    ApiCallback<BatchPersonalNameParsedOut> callback)
        -                                             throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        parseNameGeo

        -
        public PersonalNameParsedOut parseNameGeo(String nameFull,
        -                                          String countryIso2)
        -                                   throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context.
        -
        -
        Parameters:
        -
        nameFull - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        PersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameGeoWithHttpInfo

        -
        public ApiResponse<PersonalNameParsedOut> parseNameGeoWithHttpInfo(String nameFull,
        -                                                                   String countryIso2)
        -                                                            throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context.
        -
        -
        Parameters:
        -
        nameFull - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameGeoAsync

        -
        public com.squareup.okhttp.Call parseNameGeoAsync(String nameFull,
        -                                                  String countryIso2,
        -                                                  ApiCallback<PersonalNameParsedOut> callback)
        -                                           throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. (asynchronously)
        -
        -
        Parameters:
        -
        nameFull - (required)
        -
        countryIso2 - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        parseNameGeoBatch

        -
        public BatchPersonalNameParsedOut parseNameGeoBatch(BatchPersonalNameGeoIn batchPersonalNameGeoIn)
        -                                             throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision.
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameParsedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameGeoBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameParsedOut> parseNameGeoBatchWithHttpInfo(BatchPersonalNameGeoIn batchPersonalNameGeoIn)
        -                                                                      throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision.
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameParsedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        parseNameGeoBatchAsync

        -
        public com.squareup.okhttp.Call parseNameGeoBatchAsync(BatchPersonalNameGeoIn batchPersonalNameGeoIn,
        -                                                       ApiCallback<BatchPersonalNameParsedOut> callback)
        -                                                throws ApiException
        -
        Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        religionFullCall

        -
        public com.squareup.okhttp.Call religionFullCall(String countryIso2,
        -                                                 String subDivisionIso31662,
        -                                                 String personalNameFull,
        -                                                 ProgressResponseBody.ProgressListener progressListener,
        -                                                 ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                          throws ApiException
        -
        Build call for religionFull
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        subDivisionIso31662 - (required)
        -
        personalNameFull - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        religionFull

        -
        public PersonalNameReligionedOut religionFull(String countryIso2,
        -                                              String subDivisionIso31662,
        -                                              String personalNameFull)
        -                                       throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely religion of a personal full name. NB: only for INDIA (as of current version).
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        subDivisionIso31662 - (required)
        -
        personalNameFull - (required)
        -
        Returns:
        -
        PersonalNameReligionedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        religionFullWithHttpInfo

        -
        public ApiResponse<PersonalNameReligionedOut> religionFullWithHttpInfo(String countryIso2,
        -                                                                       String subDivisionIso31662,
        -                                                                       String personalNameFull)
        -                                                                throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely religion of a personal full name. NB: only for INDIA (as of current version).
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        subDivisionIso31662 - (required)
        -
        personalNameFull - (required)
        -
        Returns:
        -
        ApiResponse<PersonalNameReligionedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        religionFullAsync

        -
        public com.squareup.okhttp.Call religionFullAsync(String countryIso2,
        -                                                  String subDivisionIso31662,
        -                                                  String personalNameFull,
        -                                                  ApiCallback<PersonalNameReligionedOut> callback)
        -                                           throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely religion of a personal full name. NB: only for INDIA (as of current version). (asynchronously)
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        subDivisionIso31662 - (required)
        -
        personalNameFull - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        religionFullBatch

        -
        public BatchPersonalNameReligionedOut religionFullBatch(BatchPersonalNameGeoSubdivisionIn batchPersonalNameGeoSubdivisionIn)
        -                                                 throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely religion of up to 100 personal full names. NB: only for India as of currently.
        -
        -
        Parameters:
        -
        batchPersonalNameGeoSubdivisionIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameReligionedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        religionFullBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameReligionedOut> religionFullBatchWithHttpInfo(BatchPersonalNameGeoSubdivisionIn batchPersonalNameGeoSubdivisionIn)
        -                                                                          throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely religion of up to 100 personal full names. NB: only for India as of currently.
        -
        -
        Parameters:
        -
        batchPersonalNameGeoSubdivisionIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameReligionedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        religionFullBatchAsync

        -
        public com.squareup.okhttp.Call religionFullBatchAsync(BatchPersonalNameGeoSubdivisionIn batchPersonalNameGeoSubdivisionIn,
        -                                                       ApiCallback<BatchPersonalNameReligionedOut> callback)
        -                                                throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely religion of up to 100 personal full names. NB: only for India as of currently. (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameGeoSubdivisionIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationCall

        -
        public com.squareup.okhttp.Call subclassificationCall(String countryIso2,
        -                                                      String firstName,
        -                                                      String lastName,
        -                                                      ProgressResponseBody.ProgressListener progressListener,
        -                                                      ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                               throws ApiException
        -
        Build call for subclassification
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        subclassification

        -
        public FirstLastNameGeoSubclassificationOut subclassification(String countryIso2,
        -                                                              String firstName,
        -                                                              String lastName)
        -                                                       throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a name at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        FirstLastNameGeoSubclassificationOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationWithHttpInfo

        -
        public ApiResponse<FirstLastNameGeoSubclassificationOut> subclassificationWithHttpInfo(String countryIso2,
        -                                                                                       String firstName,
        -                                                                                       String lastName)
        -                                                                                throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a name at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameGeoSubclassificationOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationAsync

        -
        public com.squareup.okhttp.Call subclassificationAsync(String countryIso2,
        -                                                       String firstName,
        -                                                       String lastName,
        -                                                       ApiCallback<FirstLastNameGeoSubclassificationOut> callback)
        -                                                throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a name at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN'). (asynchronously)
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        firstName - (required)
        -
        lastName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        subclassificationBatch

        -
        public BatchFirstLastNameGeoSubclassificationOut subclassificationBatch(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                                                 throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a list of up to 100 names at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNameGeoSubclassificationOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameGeoSubclassificationOut> subclassificationBatchWithHttpInfo(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                                                                          throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a list of up to 100 names at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameGeoSubclassificationOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationBatchAsync

        -
        public com.squareup.okhttp.Call subclassificationBatchAsync(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn,
        -                                                            ApiCallback<BatchFirstLastNameGeoSubclassificationOut> callback)
        -                                                     throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a list of up to 100 names at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN'). (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationFullCall

        -
        public com.squareup.okhttp.Call subclassificationFullCall(String countryIso2,
        -                                                          String fullName,
        -                                                          ProgressResponseBody.ProgressListener progressListener,
        -                                                          ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                   throws ApiException
        -
        Build call for subclassificationFull
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        fullName - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationFull

        -
        public FirstLastNameGeoSubclassificationOut subclassificationFull(String countryIso2,
        -                                                                  String fullName)
        -                                                           throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a name at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        fullName - (required)
        -
        Returns:
        -
        FirstLastNameGeoSubclassificationOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationFullWithHttpInfo

        -
        public ApiResponse<FirstLastNameGeoSubclassificationOut> subclassificationFullWithHttpInfo(String countryIso2,
        -                                                                                           String fullName)
        -                                                                                    throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a name at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        fullName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameGeoSubclassificationOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationFullAsync

        -
        public com.squareup.okhttp.Call subclassificationFullAsync(String countryIso2,
        -                                                           String fullName,
        -                                                           ApiCallback<FirstLastNameGeoSubclassificationOut> callback)
        -                                                    throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a name at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN'). (asynchronously)
        -
        -
        Parameters:
        -
        countryIso2 - (required)
        -
        fullName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        subclassificationFullBatch

        -
        public BatchPersonalNameGeoSubclassificationOut subclassificationFullBatch(BatchPersonalNameGeoIn batchPersonalNameGeoIn)
        -                                                                    throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a list of up to 100 names at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchPersonalNameGeoSubclassificationOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationFullBatchWithHttpInfo

        -
        public ApiResponse<BatchPersonalNameGeoSubclassificationOut> subclassificationFullBatchWithHttpInfo(BatchPersonalNameGeoIn batchPersonalNameGeoIn)
        -                                                                                             throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a list of up to 100 names at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN').
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchPersonalNameGeoSubclassificationOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        subclassificationFullBatchAsync

        -
        public com.squareup.okhttp.Call subclassificationFullBatchAsync(BatchPersonalNameGeoIn batchPersonalNameGeoIn,
        -                                                                ApiCallback<BatchPersonalNameGeoSubclassificationOut> callback)
        -                                                         throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer the likely origin of a list of up to 100 names at a country subclassification level (state or regeion). Initially, this is only supported for India (ISO2 code 'IN'). (asynchronously)
        -
        -
        Parameters:
        -
        batchPersonalNameGeoIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        usRaceEthnicity

        -
        public FirstLastNameUSRaceEthnicityOut usRaceEthnicity(String firstName,
        -                                                       String lastName)
        -                                                throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        FirstLastNameUSRaceEthnicityOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityWithHttpInfo

        -
        public ApiResponse<FirstLastNameUSRaceEthnicityOut> usRaceEthnicityWithHttpInfo(String firstName,
        -                                                                                String lastName)
        -                                                                         throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameUSRaceEthnicityOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityAsync

        -
        public com.squareup.okhttp.Call usRaceEthnicityAsync(String firstName,
        -                                                     String lastName,
        -                                                     ApiCallback<FirstLastNameUSRaceEthnicityOut> callback)
        -                                              throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander). (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        usRaceEthnicityBatch

        -
        public BatchFirstLastNameUSRaceEthnicityOut usRaceEthnicityBatch(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                                          throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNameUSRaceEthnicityOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameUSRaceEthnicityOut> usRaceEthnicityBatchWithHttpInfo(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn)
        -                                                                                   throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameUSRaceEthnicityOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityBatchAsync

        -
        public com.squareup.okhttp.Call usRaceEthnicityBatchAsync(BatchFirstLastNameGeoIn batchFirstLastNameGeoIn,
        -                                                          ApiCallback<BatchFirstLastNameUSRaceEthnicityOut> callback)
        -                                                   throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander). (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityZIP5Call

        -
        public com.squareup.okhttp.Call usRaceEthnicityZIP5Call(String firstName,
        -                                                        String lastName,
        -                                                        String zip5Code,
        -                                                        ProgressResponseBody.ProgressListener progressListener,
        -                                                        ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                 throws ApiException
        -
        Build call for usRaceEthnicityZIP5
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        zip5Code - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityZIP5

        -
        public FirstLastNameUSRaceEthnicityOut usRaceEthnicityZIP5(String firstName,
        -                                                           String lastName,
        -                                                           String zip5Code)
        -                                                    throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        zip5Code - (required)
        -
        Returns:
        -
        FirstLastNameUSRaceEthnicityOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityZIP5WithHttpInfo

        -
        public ApiResponse<FirstLastNameUSRaceEthnicityOut> usRaceEthnicityZIP5WithHttpInfo(String firstName,
        -                                                                                    String lastName,
        -                                                                                    String zip5Code)
        -                                                                             throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        zip5Code - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNameUSRaceEthnicityOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usRaceEthnicityZIP5Async

        -
        public com.squareup.okhttp.Call usRaceEthnicityZIP5Async(String firstName,
        -                                                         String lastName,
        -                                                         String zip5Code,
        -                                                         ApiCallback<FirstLastNameUSRaceEthnicityOut> callback)
        -                                                  throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander). (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        zip5Code - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        usZipRaceEthnicityBatch

        -
        public BatchFirstLastNameUSRaceEthnicityOut usZipRaceEthnicityBatch(BatchFirstLastNameGeoZippedIn batchFirstLastNameGeoZippedIn)
        -                                                             throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoZippedIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNameUSRaceEthnicityOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usZipRaceEthnicityBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNameUSRaceEthnicityOut> usZipRaceEthnicityBatchWithHttpInfo(BatchFirstLastNameGeoZippedIn batchFirstLastNameGeoZippedIn)
        -                                                                                      throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander).
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoZippedIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNameUSRaceEthnicityOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        usZipRaceEthnicityBatchAsync

        -
        public com.squareup.okhttp.Call usZipRaceEthnicityBatchAsync(BatchFirstLastNameGeoZippedIn batchFirstLastNameGeoZippedIn,
        -                                                             ApiCallback<BatchFirstLastNameUSRaceEthnicityOut> callback)
        -                                                      throws ApiException
        -
        [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). Optionally add header X-OPTION-USRACEETHNICITY-TAXONOMY: USRACEETHNICITY-6CLASSES for two additional classes, AI_AN (American Indian or Alaskan Native) and PI (Pacific Islander). (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNameGeoZippedIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/api/SocialApi.html b/target/apidocs/com/namsor/sdk2/api/SocialApi.html deleted file mode 100644 index c5e4d078..00000000 --- a/target/apidocs/com/namsor/sdk2/api/SocialApi.html +++ /dev/null @@ -1,951 +0,0 @@ - - - - - - -SocialApi (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.api
-

Class SocialApi

-
-
- -
-
    -
  • -
    -
    -
    public class SocialApi
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        SocialApi

        -
        public SocialApi()
        -
      • -
      - - - -
        -
      • -

        SocialApi

        -
        public SocialApi(ApiClient apiClient)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getApiClient

        -
        public ApiClient getApiClient()
        -
      • -
      - - - -
        -
      • -

        setApiClient

        -
        public void setApiClient(ApiClient apiClient)
        -
      • -
      - - - - - - - -
        -
      • -

        phoneCode

        -
        public FirstLastNamePhoneCodedOut phoneCode(String firstName,
        -                                            String lastName,
        -                                            String phoneNumber)
        -                                     throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        Returns:
        -
        FirstLastNamePhoneCodedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeWithHttpInfo

        -
        public ApiResponse<FirstLastNamePhoneCodedOut> phoneCodeWithHttpInfo(String firstName,
        -                                                                     String lastName,
        -                                                                     String phoneNumber)
        -                                                              throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number.
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNamePhoneCodedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeAsync

        -
        public com.squareup.okhttp.Call phoneCodeAsync(String firstName,
        -                                               String lastName,
        -                                               String phoneNumber,
        -                                               ApiCallback<FirstLastNamePhoneCodedOut> callback)
        -                                        throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number. (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        phoneCodeBatch

        -
        public BatchFirstLastNamePhoneCodedOut phoneCodeBatch(BatchFirstLastNamePhoneNumberIn batchFirstLastNamePhoneNumberIn)
        -                                               throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number.
        -
        -
        Parameters:
        -
        batchFirstLastNamePhoneNumberIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNamePhoneCodedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNamePhoneCodedOut> phoneCodeBatchWithHttpInfo(BatchFirstLastNamePhoneNumberIn batchFirstLastNamePhoneNumberIn)
        -                                                                        throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number.
        -
        -
        Parameters:
        -
        batchFirstLastNamePhoneNumberIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNamePhoneCodedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeBatchAsync

        -
        public com.squareup.okhttp.Call phoneCodeBatchAsync(BatchFirstLastNamePhoneNumberIn batchFirstLastNamePhoneNumberIn,
        -                                                    ApiCallback<BatchFirstLastNamePhoneCodedOut> callback)
        -                                             throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number. (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNamePhoneNumberIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoCall

        -
        public com.squareup.okhttp.Call phoneCodeGeoCall(String firstName,
        -                                                 String lastName,
        -                                                 String phoneNumber,
        -                                                 String countryIso2,
        -                                                 ProgressResponseBody.ProgressListener progressListener,
        -                                                 ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                          throws ApiException
        -
        Build call for phoneCodeGeo
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        countryIso2 - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeo

        -
        public FirstLastNamePhoneCodedOut phoneCodeGeo(String firstName,
        -                                               String lastName,
        -                                               String phoneNumber,
        -                                               String countryIso2)
        -                                        throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        FirstLastNamePhoneCodedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoWithHttpInfo

        -
        public ApiResponse<FirstLastNamePhoneCodedOut> phoneCodeGeoWithHttpInfo(String firstName,
        -                                                                        String lastName,
        -                                                                        String phoneNumber,
        -                                                                        String countryIso2)
        -                                                                 throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNamePhoneCodedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoAsync

        -
        public com.squareup.okhttp.Call phoneCodeGeoAsync(String firstName,
        -                                                  String lastName,
        -                                                  String phoneNumber,
        -                                                  String countryIso2,
        -                                                  ApiCallback<FirstLastNamePhoneCodedOut> callback)
        -                                           throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        countryIso2 - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - - - - - -
        -
      • -

        phoneCodeGeoBatch

        -
        public BatchFirstLastNamePhoneCodedOut phoneCodeGeoBatch(BatchFirstLastNamePhoneNumberGeoIn batchFirstLastNamePhoneNumberGeoIn)
        -                                                  throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence).
        -
        -
        Parameters:
        -
        batchFirstLastNamePhoneNumberGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        BatchFirstLastNamePhoneCodedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoBatchWithHttpInfo

        -
        public ApiResponse<BatchFirstLastNamePhoneCodedOut> phoneCodeGeoBatchWithHttpInfo(BatchFirstLastNamePhoneNumberGeoIn batchFirstLastNamePhoneNumberGeoIn)
        -                                                                           throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence).
        -
        -
        Parameters:
        -
        batchFirstLastNamePhoneNumberGeoIn - A list of personal names (optional)
        -
        Returns:
        -
        ApiResponse<BatchFirstLastNamePhoneCodedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoBatchAsync

        -
        public com.squareup.okhttp.Call phoneCodeGeoBatchAsync(BatchFirstLastNamePhoneNumberGeoIn batchFirstLastNamePhoneNumberGeoIn,
        -                                                       ApiCallback<BatchFirstLastNamePhoneCodedOut> callback)
        -                                                throws ApiException
        -
        [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence). (asynchronously)
        -
        -
        Parameters:
        -
        batchFirstLastNamePhoneNumberGeoIn - A list of personal names (optional)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoFeedbackLoopCall

        -
        public com.squareup.okhttp.Call phoneCodeGeoFeedbackLoopCall(String firstName,
        -                                                             String lastName,
        -                                                             String phoneNumber,
        -                                                             String phoneNumberE164,
        -                                                             String countryIso2,
        -                                                             ProgressResponseBody.ProgressListener progressListener,
        -                                                             ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                                      throws ApiException
        -
        Build call for phoneCodeGeoFeedbackLoop
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        phoneNumberE164 - (required)
        -
        countryIso2 - (required)
        -
        progressListener - Progress listener
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        Call to execute
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoFeedbackLoop

        -
        public FirstLastNamePhoneCodedOut phoneCodeGeoFeedbackLoop(String firstName,
        -                                                           String lastName,
        -                                                           String phoneNumber,
        -                                                           String phoneNumberE164,
        -                                                           String countryIso2)
        -                                                    throws ApiException
        -
        [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        phoneNumberE164 - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        FirstLastNamePhoneCodedOut
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoFeedbackLoopWithHttpInfo

        -
        public ApiResponse<FirstLastNamePhoneCodedOut> phoneCodeGeoFeedbackLoopWithHttpInfo(String firstName,
        -                                                                                    String lastName,
        -                                                                                    String phoneNumber,
        -                                                                                    String phoneNumberE164,
        -                                                                                    String countryIso2)
        -                                                                             throws ApiException
        -
        [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence).
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        phoneNumberE164 - (required)
        -
        countryIso2 - (required)
        -
        Returns:
        -
        ApiResponse<FirstLastNamePhoneCodedOut>
        -
        Throws:
        -
        ApiException - If fail to call the API, e.g. server error or cannot deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        phoneCodeGeoFeedbackLoopAsync

        -
        public com.squareup.okhttp.Call phoneCodeGeoFeedbackLoopAsync(String firstName,
        -                                                              String lastName,
        -                                                              String phoneNumber,
        -                                                              String phoneNumberE164,
        -                                                              String countryIso2,
        -                                                              ApiCallback<FirstLastNamePhoneCodedOut> callback)
        -                                                       throws ApiException
        -
        [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). (asynchronously)
        -
        -
        Parameters:
        -
        firstName - (required)
        -
        lastName - (required)
        -
        phoneNumber - (required)
        -
        phoneNumberE164 - (required)
        -
        countryIso2 - (required)
        -
        callback - The callback to be executed when the API call finishes
        -
        Returns:
        -
        The request call
        -
        Throws:
        -
        ApiException - If fail to process the API call, e.g. serializing the request body object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html b/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html deleted file mode 100644 index 8148ded1..00000000 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - -ApiCallback (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.invoke
-

Interface ApiCallback<T>

-
-
-
-
    -
  • -
    -
    Type Parameters:
    -
    T - The return type
    -
    -
    -
    -
    public interface ApiCallback<T>
    -
    Callback for asynchronous API call.
    -
  • -
-
-
-
    -
  • - - -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        onFailure

        -
        void onFailure(ApiException e,
        -               int statusCode,
        -               Map<String,List<String>> responseHeaders)
        -
        This is called when the API call fails.
        -
        -
        Parameters:
        -
        e - The exception causing the failure
        -
        statusCode - Status code of the response if available, otherwise it would be 0
        -
        responseHeaders - Headers of the response if available, otherwise it would be null
        -
        -
      • -
      - - - - - -
        -
      • -

        onSuccess

        -
        void onSuccess(T result,
        -               int statusCode,
        -               Map<String,List<String>> responseHeaders)
        -
        This is called when the API call succeeded.
        -
        -
        Parameters:
        -
        result - The result deserialized from response
        -
        statusCode - Status code of the response
        -
        responseHeaders - Headers of the response
        -
        -
      • -
      - - - -
        -
      • -

        onUploadProgress

        -
        void onUploadProgress(long bytesWritten,
        -                      long contentLength,
        -                      boolean done)
        -
        This is called when the API upload processing.
        -
        -
        Parameters:
        -
        bytesWritten - bytes Written
        -
        contentLength - content length of request body
        -
        done - write end
        -
        -
      • -
      - - - -
        -
      • -

        onDownloadProgress

        -
        void onDownloadProgress(long bytesRead,
        -                        long contentLength,
        -                        boolean done)
        -
        This is called when the API downlond processing.
        -
        -
        Parameters:
        -
        bytesRead - bytes Read
        -
        contentLength - content lenngth of the response
        -
        done - Read end
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html b/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html deleted file mode 100644 index c77dca4f..00000000 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html +++ /dev/null @@ -1,1724 +0,0 @@ - - - - - - -ApiClient (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.invoke
-

Class ApiClient

-
-
- -
-
    -
  • -
    -
    -
    public class ApiClient
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ApiClient

        -
        public ApiClient()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getBasePath

        -
        public String getBasePath()
        -
        Get base path
        -
        -
        Returns:
        -
        Base path
        -
        -
      • -
      - - - -
        -
      • -

        setBasePath

        -
        public ApiClient setBasePath(String basePath)
        -
        Set base path
        -
        -
        Parameters:
        -
        basePath - Base path of the URL (e.g https://v2.namsor.com/NamSorAPIv2
        -
        Returns:
        -
        An instance of OkHttpClient
        -
        -
      • -
      - - - -
        -
      • -

        getHttpClient

        -
        public com.squareup.okhttp.OkHttpClient getHttpClient()
        -
        Get HTTP client
        -
        -
        Returns:
        -
        An instance of OkHttpClient
        -
        -
      • -
      - - - -
        -
      • -

        setHttpClient

        -
        public ApiClient setHttpClient(com.squareup.okhttp.OkHttpClient httpClient)
        -
        Set HTTP client
        -
        -
        Parameters:
        -
        httpClient - An instance of OkHttpClient
        -
        Returns:
        -
        Api Client
        -
        -
      • -
      - - - -
        -
      • -

        getJSON

        -
        public JSON getJSON()
        -
        Get JSON
        -
        -
        Returns:
        -
        JSON object
        -
        -
      • -
      - - - -
        -
      • -

        setJSON

        -
        public ApiClient setJSON(JSON json)
        -
        Set JSON
        -
        -
        Parameters:
        -
        json - JSON object
        -
        Returns:
        -
        Api client
        -
        -
      • -
      - - - -
        -
      • -

        isVerifyingSsl

        -
        public boolean isVerifyingSsl()
        -
        True if isVerifyingSsl flag is on
        -
        -
        Returns:
        -
        True if isVerifySsl flag is on
        -
        -
      • -
      - - - -
        -
      • -

        setVerifyingSsl

        -
        public ApiClient setVerifyingSsl(boolean verifyingSsl)
        -
        Configure whether to verify certificate and hostname when making https requests. - Default to true. - NOTE: Do NOT set to false in production code, otherwise you would face multiple types of cryptographic attacks.
        -
        -
        Parameters:
        -
        verifyingSsl - True to verify TLS/SSL connection
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        getSslCaCert

        -
        public InputStream getSslCaCert()
        -
        Get SSL CA cert.
        -
        -
        Returns:
        -
        Input stream to the SSL CA cert
        -
        -
      • -
      - - - -
        -
      • -

        setSslCaCert

        -
        public ApiClient setSslCaCert(InputStream sslCaCert)
        -
        Configure the CA certificate to be trusted when making https requests. - Use null to reset to default.
        -
        -
        Parameters:
        -
        sslCaCert - input stream for SSL CA cert
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        getKeyManagers

        -
        public KeyManager[] getKeyManagers()
        -
      • -
      - - - -
        -
      • -

        setKeyManagers

        -
        public ApiClient setKeyManagers(KeyManager[] managers)
        -
        Configure client keys to use for authorization in an SSL session. - Use null to reset to default.
        -
        -
        Parameters:
        -
        managers - The KeyManagers to use
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        getDateFormat

        -
        public DateFormat getDateFormat()
        -
      • -
      - - - - - - - - - - - -
        -
      • -

        setOffsetDateTimeFormat

        -
        public ApiClient setOffsetDateTimeFormat(org.threeten.bp.format.DateTimeFormatter dateFormat)
        -
      • -
      - - - -
        -
      • -

        setLocalDateFormat

        -
        public ApiClient setLocalDateFormat(org.threeten.bp.format.DateTimeFormatter dateFormat)
        -
      • -
      - - - -
        -
      • -

        setLenientOnJson

        -
        public ApiClient setLenientOnJson(boolean lenientOnJson)
        -
      • -
      - - - -
        -
      • -

        getAuthentications

        -
        public Map<String,Authentication> getAuthentications()
        -
        Get authentications (key: authentication name, value: authentication).
        -
        -
        Returns:
        -
        Map of authentication objects
        -
        -
      • -
      - - - -
        -
      • -

        getAuthentication

        -
        public Authentication getAuthentication(String authName)
        -
        Get authentication for the given name.
        -
        -
        Parameters:
        -
        authName - The authentication name
        -
        Returns:
        -
        The authentication, null if not found
        -
        -
      • -
      - - - -
        -
      • -

        setUsername

        -
        public void setUsername(String username)
        -
        Helper method to set username for the first HTTP basic authentication.
        -
        -
        Parameters:
        -
        username - Username
        -
        -
      • -
      - - - -
        -
      • -

        setPassword

        -
        public void setPassword(String password)
        -
        Helper method to set password for the first HTTP basic authentication.
        -
        -
        Parameters:
        -
        password - Password
        -
        -
      • -
      - - - -
        -
      • -

        setApiKey

        -
        public void setApiKey(String apiKey)
        -
        Helper method to set API key value for the first API key authentication.
        -
        -
        Parameters:
        -
        apiKey - API key
        -
        -
      • -
      - - - -
        -
      • -

        setApiKeyPrefix

        -
        public void setApiKeyPrefix(String apiKeyPrefix)
        -
        Helper method to set API key prefix for the first API key authentication.
        -
        -
        Parameters:
        -
        apiKeyPrefix - API key prefix
        -
        -
      • -
      - - - -
        -
      • -

        setAccessToken

        -
        public void setAccessToken(String accessToken)
        -
        Helper method to set access token for the first OAuth2 authentication.
        -
        -
        Parameters:
        -
        accessToken - Access token
        -
        -
      • -
      - - - -
        -
      • -

        setUserAgent

        -
        public ApiClient setUserAgent(String userAgent)
        -
        Set the User-Agent header's value (by adding to the default header map).
        -
        -
        Parameters:
        -
        userAgent - HTTP request's user agent
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        addDefaultHeader

        -
        public ApiClient addDefaultHeader(String key,
        -                                  String value)
        -
        Add a default header.
        -
        -
        Parameters:
        -
        key - The header's key
        -
        value - The header's value
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        isDebugging

        -
        public boolean isDebugging()
        -
        Check that whether debugging is enabled for this API client.
        -
        -
        Returns:
        -
        True if debugging is enabled, false otherwise.
        -
        -
      • -
      - - - -
        -
      • -

        setDebugging

        -
        public ApiClient setDebugging(boolean debugging)
        -
        Enable/disable debugging for this API client.
        -
        -
        Parameters:
        -
        debugging - To enable (true) or disable (false) debugging
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        getTempFolderPath

        -
        public String getTempFolderPath()
        -
        The path of temporary folder used to store downloaded files from endpoints - with file response. The default value is null, i.e. using - the system's default tempopary folder.
        -
        -
        Returns:
        -
        Temporary folder path
        -
        See Also:
        -
        createTempFile
        -
        -
      • -
      - - - -
        -
      • -

        setTempFolderPath

        -
        public ApiClient setTempFolderPath(String tempFolderPath)
        -
        Set the temporary folder path (for downloading files)
        -
        -
        Parameters:
        -
        tempFolderPath - Temporary folder path
        -
        Returns:
        -
        ApiClient
        -
        -
      • -
      - - - -
        -
      • -

        getConnectTimeout

        -
        public int getConnectTimeout()
        -
        Get connection timeout (in milliseconds).
        -
        -
        Returns:
        -
        Timeout in milliseconds
        -
        -
      • -
      - - - -
        -
      • -

        setConnectTimeout

        -
        public ApiClient setConnectTimeout(int connectionTimeout)
        -
        Sets the connect timeout (in milliseconds). - A value of 0 means no timeout, otherwise values must be between 1 and - Integer.MAX_VALUE.
        -
        -
        Parameters:
        -
        connectionTimeout - connection timeout in milliseconds
        -
        Returns:
        -
        Api client
        -
        -
      • -
      - - - -
        -
      • -

        getReadTimeout

        -
        public int getReadTimeout()
        -
        Get read timeout (in milliseconds).
        -
        -
        Returns:
        -
        Timeout in milliseconds
        -
        -
      • -
      - - - -
        -
      • -

        setReadTimeout

        -
        public ApiClient setReadTimeout(int readTimeout)
        -
        Sets the read timeout (in milliseconds). - A value of 0 means no timeout, otherwise values must be between 1 and - Integer.MAX_VALUE.
        -
        -
        Parameters:
        -
        readTimeout - read timeout in milliseconds
        -
        Returns:
        -
        Api client
        -
        -
      • -
      - - - -
        -
      • -

        getWriteTimeout

        -
        public int getWriteTimeout()
        -
        Get write timeout (in milliseconds).
        -
        -
        Returns:
        -
        Timeout in milliseconds
        -
        -
      • -
      - - - -
        -
      • -

        setWriteTimeout

        -
        public ApiClient setWriteTimeout(int writeTimeout)
        -
        Sets the write timeout (in milliseconds). - A value of 0 means no timeout, otherwise values must be between 1 and - Integer.MAX_VALUE.
        -
        -
        Parameters:
        -
        writeTimeout - connection timeout in milliseconds
        -
        Returns:
        -
        Api client
        -
        -
      • -
      - - - -
        -
      • -

        getTokenEndPoint

        -
        public org.apache.oltu.oauth2.client.request.OAuthClientRequest.TokenRequestBuilder getTokenEndPoint()
        -
        Helper method to configure the token endpoint of the first oauth found in the apiAuthorizations (there should be only one)
        -
        -
        Returns:
        -
        Token request builder
        -
        -
      • -
      - - - -
        -
      • -

        parameterToString

        -
        public String parameterToString(Object param)
        -
        Format the given parameter object into string.
        -
        -
        Parameters:
        -
        param - Parameter
        -
        Returns:
        -
        String representation of the parameter
        -
        -
      • -
      - - - -
        -
      • -

        parameterToPair

        -
        public List<Pair> parameterToPair(String name,
        -                                  Object value)
        -
        Formats the specified query parameter to a list containing a single Pair object. - - Note that value must not be a collection.
        -
        -
        Parameters:
        -
        name - The name of the parameter.
        -
        value - The value of the parameter.
        -
        Returns:
        -
        A list containing a single Pair object.
        -
        -
      • -
      - - - -
        -
      • -

        parameterToPairs

        -
        public List<Pair> parameterToPairs(String collectionFormat,
        -                                   String name,
        -                                   Collection value)
        -
        Formats the specified collection query parameters to a list of Pair objects. - - Note that the values of each of the returned Pair objects are percent-encoded.
        -
        -
        Parameters:
        -
        collectionFormat - The collection format of the parameter.
        -
        name - The name of the parameter.
        -
        value - The value of the parameter.
        -
        Returns:
        -
        A list of Pair objects.
        -
        -
      • -
      - - - -
        -
      • -

        sanitizeFilename

        -
        public String sanitizeFilename(String filename)
        -
        Sanitize filename by removing path. - e.g. ../../sun.gif becomes sun.gif
        -
        -
        Parameters:
        -
        filename - The filename to be sanitized
        -
        Returns:
        -
        The sanitized filename
        -
        -
      • -
      - - - -
        -
      • -

        isJsonMime

        -
        public boolean isJsonMime(String mime)
        -
        Check if the given MIME is a JSON MIME. - JSON MIME examples: - application/json - application/json; charset=UTF8 - APPLICATION/JSON - application/vnd.company+json - "* / *" is also default to JSON
        -
        -
        Parameters:
        -
        mime - MIME (Multipurpose Internet Mail Extensions)
        -
        Returns:
        -
        True if the given MIME is JSON, false otherwise.
        -
        -
      • -
      - - - -
        -
      • -

        selectHeaderAccept

        -
        public String selectHeaderAccept(String[] accepts)
        -
        Select the Accept header's value from the given accepts array: - if JSON exists in the given array, use it; - otherwise use all of them (joining into a string)
        -
        -
        Parameters:
        -
        accepts - The accepts array to select from
        -
        Returns:
        -
        The Accept header to use. If the given array is empty, - null will be returned (not to set the Accept header explicitly).
        -
        -
      • -
      - - - -
        -
      • -

        selectHeaderContentType

        -
        public String selectHeaderContentType(String[] contentTypes)
        -
        Select the Content-Type header's value from the given array: - if JSON exists in the given array, use it; - otherwise use the first one of the array.
        -
        -
        Parameters:
        -
        contentTypes - The Content-Type array to select from
        -
        Returns:
        -
        The Content-Type header to use. If the given array is empty, - or matches "any", JSON will be used.
        -
        -
      • -
      - - - -
        -
      • -

        escapeString

        -
        public String escapeString(String str)
        -
        Escape the given string to be used as URL query value.
        -
        -
        Parameters:
        -
        str - String to be escaped
        -
        Returns:
        -
        Escaped string
        -
        -
      • -
      - - - -
        -
      • -

        deserialize

        -
        public <T> T deserialize(com.squareup.okhttp.Response response,
        -                         Type returnType)
        -                  throws ApiException
        -
        Deserialize response body to Java object, according to the return type and - the Content-Type response header.
        -
        -
        Type Parameters:
        -
        T - Type
        -
        Parameters:
        -
        response - HTTP response
        -
        returnType - The type of the Java object
        -
        Returns:
        -
        The deserialized Java object
        -
        Throws:
        -
        ApiException - If fail to deserialize response body, i.e. cannot read response body - or the Content-Type of the response is not supported.
        -
        -
      • -
      - - - -
        -
      • -

        serialize

        -
        public com.squareup.okhttp.RequestBody serialize(Object obj,
        -                                                 String contentType)
        -                                          throws ApiException
        -
        Serialize the given Java object into request body according to the object's - class and the request Content-Type.
        -
        -
        Parameters:
        -
        obj - The Java object
        -
        contentType - The request Content-Type
        -
        Returns:
        -
        The serialized request body
        -
        Throws:
        -
        ApiException - If fail to serialize the given object
        -
        -
      • -
      - - - -
        -
      • -

        downloadFileFromResponse

        -
        public File downloadFileFromResponse(com.squareup.okhttp.Response response)
        -                              throws ApiException
        -
        Download file from the given response.
        -
        -
        Parameters:
        -
        response - An instance of the Response object
        -
        Returns:
        -
        Downloaded file
        -
        Throws:
        -
        ApiException - If fail to read file content from response and write to disk
        -
        -
      • -
      - - - -
        -
      • -

        prepareDownloadFile

        -
        public File prepareDownloadFile(com.squareup.okhttp.Response response)
        -                         throws IOException
        -
        Prepare file for download
        -
        -
        Parameters:
        -
        response - An instance of the Response object
        -
        Returns:
        -
        Prepared file for the download
        -
        Throws:
        -
        IOException - If fail to prepare file for download
        -
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public <T> ApiResponse<T> execute(com.squareup.okhttp.Call call)
        -                           throws ApiException
        - -
        -
        Type Parameters:
        -
        T - Type
        -
        Parameters:
        -
        call - An instance of the Call object
        -
        Returns:
        -
        ApiResponse<T>
        -
        Throws:
        -
        ApiException - If fail to execute the call
        -
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public <T> ApiResponse<T> execute(com.squareup.okhttp.Call call,
        -                                  Type returnType)
        -                           throws ApiException
        -
        Execute HTTP call and deserialize the HTTP response body into the given return type.
        -
        -
        Type Parameters:
        -
        T - The return type corresponding to (same with) returnType
        -
        Parameters:
        -
        returnType - The return type used to deserialize HTTP response body
        -
        call - Call
        -
        Returns:
        -
        ApiResponse object containing response status, headers and - data, which is a Java object deserialized from response body and would be null - when returnType is null.
        -
        Throws:
        -
        ApiException - If fail to execute the call
        -
        -
      • -
      - - - -
        -
      • -

        executeAsync

        -
        public <T> void executeAsync(com.squareup.okhttp.Call call,
        -                             ApiCallback<T> callback)
        - -
        -
        Type Parameters:
        -
        T - Type
        -
        Parameters:
        -
        call - An instance of the Call object
        -
        callback - ApiCallback<T>
        -
        -
      • -
      - - - -
        -
      • -

        executeAsync

        -
        public <T> void executeAsync(com.squareup.okhttp.Call call,
        -                             Type returnType,
        -                             ApiCallback<T> callback)
        -
        Execute HTTP call asynchronously.
        -
        -
        Type Parameters:
        -
        T - Type
        -
        Parameters:
        -
        call - The callback to be executed when the API call finishes
        -
        returnType - Return type
        -
        callback - ApiCallback
        -
        See Also:
        -
        execute(Call, Type)
        -
        -
      • -
      - - - -
        -
      • -

        handleResponse

        -
        public <T> T handleResponse(com.squareup.okhttp.Response response,
        -                            Type returnType)
        -                     throws ApiException
        -
        Handle the given response, return the deserialized object when the response is successful.
        -
        -
        Type Parameters:
        -
        T - Type
        -
        Parameters:
        -
        response - Response
        -
        returnType - Return type
        -
        Returns:
        -
        Type
        -
        Throws:
        -
        ApiException - If the response has an unsuccessful status code or - fail to deserialize the response body
        -
        -
      • -
      - - - -
        -
      • -

        buildCall

        -
        public com.squareup.okhttp.Call buildCall(String path,
        -                                          String method,
        -                                          List<Pair> queryParams,
        -                                          List<Pair> collectionQueryParams,
        -                                          Object body,
        -                                          Map<String,String> headerParams,
        -                                          Map<String,Object> formParams,
        -                                          String[] authNames,
        -                                          ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                   throws ApiException
        -
        Build HTTP call with the given options.
        -
        -
        Parameters:
        -
        path - The sub-path of the HTTP URL
        -
        method - The request method, one of "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH" and "DELETE"
        -
        queryParams - The query parameters
        -
        collectionQueryParams - The collection query parameters
        -
        body - The request body object
        -
        headerParams - The header parameters
        -
        formParams - The form parameters
        -
        authNames - The authentications to apply
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        The HTTP call
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        buildRequest

        -
        public com.squareup.okhttp.Request buildRequest(String path,
        -                                                String method,
        -                                                List<Pair> queryParams,
        -                                                List<Pair> collectionQueryParams,
        -                                                Object body,
        -                                                Map<String,String> headerParams,
        -                                                Map<String,Object> formParams,
        -                                                String[] authNames,
        -                                                ProgressRequestBody.ProgressRequestListener progressRequestListener)
        -                                         throws ApiException
        -
        Build an HTTP request with the given options.
        -
        -
        Parameters:
        -
        path - The sub-path of the HTTP URL
        -
        method - The request method, one of "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH" and "DELETE"
        -
        queryParams - The query parameters
        -
        collectionQueryParams - The collection query parameters
        -
        body - The request body object
        -
        headerParams - The header parameters
        -
        formParams - The form parameters
        -
        authNames - The authentications to apply
        -
        progressRequestListener - Progress request listener
        -
        Returns:
        -
        The HTTP request
        -
        Throws:
        -
        ApiException - If fail to serialize the request body object
        -
        -
      • -
      - - - -
        -
      • -

        buildUrl

        -
        public String buildUrl(String path,
        -                       List<Pair> queryParams,
        -                       List<Pair> collectionQueryParams)
        -
        Build full URL by concatenating base path, the given sub path and query parameters.
        -
        -
        Parameters:
        -
        path - The sub path
        -
        queryParams - The query parameters
        -
        collectionQueryParams - The collection query parameters
        -
        Returns:
        -
        The full URL
        -
        -
      • -
      - - - -
        -
      • -

        processHeaderParams

        -
        public void processHeaderParams(Map<String,String> headerParams,
        -                                com.squareup.okhttp.Request.Builder reqBuilder)
        -
        Set header parameters to the request builder, including default headers.
        -
        -
        Parameters:
        -
        headerParams - Header parameters in the ofrm of Map
        -
        reqBuilder - Reqeust.Builder
        -
        -
      • -
      - - - -
        -
      • -

        updateParamsForAuth

        -
        public void updateParamsForAuth(String[] authNames,
        -                                List<Pair> queryParams,
        -                                Map<String,String> headerParams)
        -
        Update query and header parameters based on authentication settings.
        -
        -
        Parameters:
        -
        authNames - The authentications to apply
        -
        queryParams - List of query parameters
        -
        headerParams - Map of header parameters
        -
        -
      • -
      - - - -
        -
      • -

        buildRequestBodyFormEncoding

        -
        public com.squareup.okhttp.RequestBody buildRequestBodyFormEncoding(Map<String,Object> formParams)
        -
        Build a form-encoding request body with the given form parameters.
        -
        -
        Parameters:
        -
        formParams - Form parameters in the form of Map
        -
        Returns:
        -
        RequestBody
        -
        -
      • -
      - - - -
        -
      • -

        buildRequestBodyMultipart

        -
        public com.squareup.okhttp.RequestBody buildRequestBodyMultipart(Map<String,Object> formParams)
        -
        Build a multipart (file uploading) request body with the given form parameters, - which could contain text fields and file fields.
        -
        -
        Parameters:
        -
        formParams - Form parameters in the form of Map
        -
        Returns:
        -
        RequestBody
        -
        -
      • -
      - - - -
        -
      • -

        guessContentTypeFromFile

        -
        public String guessContentTypeFromFile(File file)
        -
        Guess Content-Type header from the given file (defaults to "application/octet-stream").
        -
        -
        Parameters:
        -
        file - The given file
        -
        Returns:
        -
        The guessed Content-Type
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiException.html b/target/apidocs/com/namsor/sdk2/invoke/ApiException.html deleted file mode 100644 index bf8868bc..00000000 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiException.html +++ /dev/null @@ -1,475 +0,0 @@ - - - - - - -ApiException (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.invoke
-

Class ApiException

-
-
- -
- -
-
- -
-
-
    -
  • - - - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getCode

        -
        public int getCode()
        -
        Get the HTTP status code.
        -
        -
        Returns:
        -
        HTTP status code
        -
        -
      • -
      - - - -
        -
      • -

        getResponseHeaders

        -
        public Map<String,List<String>> getResponseHeaders()
        -
        Get the HTTP response headers.
        -
        -
        Returns:
        -
        A map of list of string
        -
        -
      • -
      - - - -
        -
      • -

        getResponseBody

        -
        public String getResponseBody()
        -
        Get the HTTP response body.
        -
        -
        Returns:
        -
        Response body in the form of string
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html b/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html deleted file mode 100644 index ce81cc73..00000000 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - -ApiResponse (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.invoke
-

Class ApiResponse<T>

-
-
- -
-
    -
  • -
    -
    Type Parameters:
    -
    T - The type of data that is deserialized from response body
    -
    -
    -
    -
    public class ApiResponse<T>
    -extends Object
    -
    API response returned by API call.
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ApiResponse

        -
        public ApiResponse(int statusCode,
        -                   Map<String,List<String>> headers)
        -
        -
        Parameters:
        -
        statusCode - The status code of HTTP response
        -
        headers - The headers of HTTP response
        -
        -
      • -
      - - - - - -
        -
      • -

        ApiResponse

        -
        public ApiResponse(int statusCode,
        -                   Map<String,List<String>> headers,
        -                   T data)
        -
        -
        Parameters:
        -
        statusCode - The status code of HTTP response
        -
        headers - The headers of HTTP response
        -
        data - The object deserialized from response bod
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getStatusCode

        -
        public int getStatusCode()
        -
      • -
      - - - - - - - -
        -
      • -

        getData

        -
        public T getData()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/invoke/Configuration.html b/target/apidocs/com/namsor/sdk2/invoke/Configuration.html deleted file mode 100644 index 479fe9da..00000000 --- a/target/apidocs/com/namsor/sdk2/invoke/Configuration.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - -Configuration (namsor-sdk2 2.0.26 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.invoke
-

Class Configuration

-
-
- -
-
    -
  • -
    -
    -
    @Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
    -           date="2023-06-19T10:33:14.621+02:00[Europe/Berlin]")
    -public class Configuration
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        Configuration

        -
        public Configuration()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getDefaultApiClient

        -
        public static ApiClient getDefaultApiClient()
        -
        Get the default API client, which would be used when creating API - instances without providing an API client.
        -
        -
        Returns:
        -
        Default API client
        -
        -
      • -
      - - - -
        -
      • -

        setDefaultApiClient

        -
        public static void setDefaultApiClient(ApiClient apiClient)
        -
        Set the default API client, which would be used when creating API - instances without providing an API client.
        -
        -
        Parameters:
        -
        apiClient - API client
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2023. All rights reserved.

- - diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$1.class b/target/classes/com/namsor/sdk2/api/AdminApi$1.class deleted file mode 100644 index 87f5c1a6..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$10.class b/target/classes/com/namsor/sdk2/api/AdminApi$10.class deleted file mode 100644 index aad70a5f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$10.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$11.class b/target/classes/com/namsor/sdk2/api/AdminApi$11.class deleted file mode 100644 index 0f08ea72..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$11.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$12.class b/target/classes/com/namsor/sdk2/api/AdminApi$12.class deleted file mode 100644 index 79379da9..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$12.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$13.class b/target/classes/com/namsor/sdk2/api/AdminApi$13.class deleted file mode 100644 index f9455b71..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$13.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$14.class b/target/classes/com/namsor/sdk2/api/AdminApi$14.class deleted file mode 100644 index 7bf989c8..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$14.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$15.class b/target/classes/com/namsor/sdk2/api/AdminApi$15.class deleted file mode 100644 index adacaad2..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$15.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$16.class b/target/classes/com/namsor/sdk2/api/AdminApi$16.class deleted file mode 100644 index cf5560a3..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$16.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$17.class b/target/classes/com/namsor/sdk2/api/AdminApi$17.class deleted file mode 100644 index d6466c6e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$17.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$18.class b/target/classes/com/namsor/sdk2/api/AdminApi$18.class deleted file mode 100644 index 3297de58..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$18.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$19.class b/target/classes/com/namsor/sdk2/api/AdminApi$19.class deleted file mode 100644 index 24983c44..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$19.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$2.class b/target/classes/com/namsor/sdk2/api/AdminApi$2.class deleted file mode 100644 index 02666593..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$2.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$20.class b/target/classes/com/namsor/sdk2/api/AdminApi$20.class deleted file mode 100644 index 7fe98d66..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$20.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$21.class b/target/classes/com/namsor/sdk2/api/AdminApi$21.class deleted file mode 100644 index 916d308e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$21.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$22.class b/target/classes/com/namsor/sdk2/api/AdminApi$22.class deleted file mode 100644 index d5f2f01c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$22.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$23.class b/target/classes/com/namsor/sdk2/api/AdminApi$23.class deleted file mode 100644 index 399fffa4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$23.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$24.class b/target/classes/com/namsor/sdk2/api/AdminApi$24.class deleted file mode 100644 index 1df3c19f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$24.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$25.class b/target/classes/com/namsor/sdk2/api/AdminApi$25.class deleted file mode 100644 index 9ad850d6..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$25.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$26.class b/target/classes/com/namsor/sdk2/api/AdminApi$26.class deleted file mode 100644 index 94c08651..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$26.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$27.class b/target/classes/com/namsor/sdk2/api/AdminApi$27.class deleted file mode 100644 index ab81f163..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$27.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$28.class b/target/classes/com/namsor/sdk2/api/AdminApi$28.class deleted file mode 100644 index 4de7926a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$28.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$29.class b/target/classes/com/namsor/sdk2/api/AdminApi$29.class deleted file mode 100644 index 4ac8ca1a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$29.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$3.class b/target/classes/com/namsor/sdk2/api/AdminApi$3.class deleted file mode 100644 index 293164e9..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$3.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$30.class b/target/classes/com/namsor/sdk2/api/AdminApi$30.class deleted file mode 100644 index 712f315b..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$30.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$31.class b/target/classes/com/namsor/sdk2/api/AdminApi$31.class deleted file mode 100644 index 0f8d9623..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$31.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$32.class b/target/classes/com/namsor/sdk2/api/AdminApi$32.class deleted file mode 100644 index c3d71e80..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$32.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$33.class b/target/classes/com/namsor/sdk2/api/AdminApi$33.class deleted file mode 100644 index 80ab61db..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$33.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$34.class b/target/classes/com/namsor/sdk2/api/AdminApi$34.class deleted file mode 100644 index 5ebd460a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$34.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$35.class b/target/classes/com/namsor/sdk2/api/AdminApi$35.class deleted file mode 100644 index 3ba99db7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$35.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$36.class b/target/classes/com/namsor/sdk2/api/AdminApi$36.class deleted file mode 100644 index 2a0a87d6..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$36.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$37.class b/target/classes/com/namsor/sdk2/api/AdminApi$37.class deleted file mode 100644 index feabdcfd..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$37.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$38.class b/target/classes/com/namsor/sdk2/api/AdminApi$38.class deleted file mode 100644 index 1d65aabd..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$38.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$39.class b/target/classes/com/namsor/sdk2/api/AdminApi$39.class deleted file mode 100644 index 1d6e0a0e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$39.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$4.class b/target/classes/com/namsor/sdk2/api/AdminApi$4.class deleted file mode 100644 index 7f973b3e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$4.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$40.class b/target/classes/com/namsor/sdk2/api/AdminApi$40.class deleted file mode 100644 index 8b60cbf0..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$40.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$41.class b/target/classes/com/namsor/sdk2/api/AdminApi$41.class deleted file mode 100644 index 75d805ff..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$41.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$42.class b/target/classes/com/namsor/sdk2/api/AdminApi$42.class deleted file mode 100644 index 62597e7c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$42.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$43.class b/target/classes/com/namsor/sdk2/api/AdminApi$43.class deleted file mode 100644 index 5a4bf012..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$43.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$44.class b/target/classes/com/namsor/sdk2/api/AdminApi$44.class deleted file mode 100644 index 761c93d9..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$44.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$5.class b/target/classes/com/namsor/sdk2/api/AdminApi$5.class deleted file mode 100644 index c7884385..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$5.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$6.class b/target/classes/com/namsor/sdk2/api/AdminApi$6.class deleted file mode 100644 index cd5006e3..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$6.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$7.class b/target/classes/com/namsor/sdk2/api/AdminApi$7.class deleted file mode 100644 index 77063cdc..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$7.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$8.class b/target/classes/com/namsor/sdk2/api/AdminApi$8.class deleted file mode 100644 index 610a4c8f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$8.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi$9.class b/target/classes/com/namsor/sdk2/api/AdminApi$9.class deleted file mode 100644 index 12cda5a0..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi$9.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/AdminApi.class b/target/classes/com/namsor/sdk2/api/AdminApi.class deleted file mode 100644 index e821e901..00000000 Binary files a/target/classes/com/namsor/sdk2/api/AdminApi.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$1.class b/target/classes/com/namsor/sdk2/api/ChineseApi$1.class deleted file mode 100644 index 213e3b63..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$10.class b/target/classes/com/namsor/sdk2/api/ChineseApi$10.class deleted file mode 100644 index 8ac9f521..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$10.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$11.class b/target/classes/com/namsor/sdk2/api/ChineseApi$11.class deleted file mode 100644 index bc250227..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$11.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$12.class b/target/classes/com/namsor/sdk2/api/ChineseApi$12.class deleted file mode 100644 index 3fb58df3..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$12.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$13.class b/target/classes/com/namsor/sdk2/api/ChineseApi$13.class deleted file mode 100644 index 4ee9929a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$13.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$14.class b/target/classes/com/namsor/sdk2/api/ChineseApi$14.class deleted file mode 100644 index 08d152b7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$14.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$15.class b/target/classes/com/namsor/sdk2/api/ChineseApi$15.class deleted file mode 100644 index f41459c4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$15.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$16.class b/target/classes/com/namsor/sdk2/api/ChineseApi$16.class deleted file mode 100644 index 9f030b95..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$16.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$17.class b/target/classes/com/namsor/sdk2/api/ChineseApi$17.class deleted file mode 100644 index bafe9e42..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$17.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$18.class b/target/classes/com/namsor/sdk2/api/ChineseApi$18.class deleted file mode 100644 index b4458860..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$18.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$19.class b/target/classes/com/namsor/sdk2/api/ChineseApi$19.class deleted file mode 100644 index 16c6f892..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$19.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$2.class b/target/classes/com/namsor/sdk2/api/ChineseApi$2.class deleted file mode 100644 index de8d5f06..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$2.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$20.class b/target/classes/com/namsor/sdk2/api/ChineseApi$20.class deleted file mode 100644 index 79098ce9..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$20.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$3.class b/target/classes/com/namsor/sdk2/api/ChineseApi$3.class deleted file mode 100644 index 101dfc38..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$3.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$4.class b/target/classes/com/namsor/sdk2/api/ChineseApi$4.class deleted file mode 100644 index af0fc3a6..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$4.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$5.class b/target/classes/com/namsor/sdk2/api/ChineseApi$5.class deleted file mode 100644 index f2d7aaaf..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$5.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$6.class b/target/classes/com/namsor/sdk2/api/ChineseApi$6.class deleted file mode 100644 index aa73f522..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$6.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$7.class b/target/classes/com/namsor/sdk2/api/ChineseApi$7.class deleted file mode 100644 index 7178703d..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$7.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$8.class b/target/classes/com/namsor/sdk2/api/ChineseApi$8.class deleted file mode 100644 index 0db3d4fb..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$8.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi$9.class b/target/classes/com/namsor/sdk2/api/ChineseApi$9.class deleted file mode 100644 index 48dbe555..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi$9.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/ChineseApi.class b/target/classes/com/namsor/sdk2/api/ChineseApi.class deleted file mode 100644 index ef2495e4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/ChineseApi.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$1.class b/target/classes/com/namsor/sdk2/api/PersonalApi$1.class deleted file mode 100644 index 12528a88..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$10.class b/target/classes/com/namsor/sdk2/api/PersonalApi$10.class deleted file mode 100644 index 41c15683..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$10.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$100.class b/target/classes/com/namsor/sdk2/api/PersonalApi$100.class deleted file mode 100644 index 730ea496..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$100.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$101.class b/target/classes/com/namsor/sdk2/api/PersonalApi$101.class deleted file mode 100644 index 430a973e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$101.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$102.class b/target/classes/com/namsor/sdk2/api/PersonalApi$102.class deleted file mode 100644 index b966f36f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$102.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$103.class b/target/classes/com/namsor/sdk2/api/PersonalApi$103.class deleted file mode 100644 index cb95a63f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$103.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$104.class b/target/classes/com/namsor/sdk2/api/PersonalApi$104.class deleted file mode 100644 index 67ac36a2..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$104.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$105.class b/target/classes/com/namsor/sdk2/api/PersonalApi$105.class deleted file mode 100644 index 19fec9bc..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$105.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$106.class b/target/classes/com/namsor/sdk2/api/PersonalApi$106.class deleted file mode 100644 index 7c8f7544..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$106.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$107.class b/target/classes/com/namsor/sdk2/api/PersonalApi$107.class deleted file mode 100644 index b2319b3a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$107.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$108.class b/target/classes/com/namsor/sdk2/api/PersonalApi$108.class deleted file mode 100644 index 7fc67c3f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$108.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$109.class b/target/classes/com/namsor/sdk2/api/PersonalApi$109.class deleted file mode 100644 index bf1de364..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$109.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$11.class b/target/classes/com/namsor/sdk2/api/PersonalApi$11.class deleted file mode 100644 index 98cfc911..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$11.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$110.class b/target/classes/com/namsor/sdk2/api/PersonalApi$110.class deleted file mode 100644 index 451328fa..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$110.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$111.class b/target/classes/com/namsor/sdk2/api/PersonalApi$111.class deleted file mode 100644 index c60d3e10..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$111.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$112.class b/target/classes/com/namsor/sdk2/api/PersonalApi$112.class deleted file mode 100644 index 156ef8f8..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$112.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$113.class b/target/classes/com/namsor/sdk2/api/PersonalApi$113.class deleted file mode 100644 index 493aac48..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$113.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$114.class b/target/classes/com/namsor/sdk2/api/PersonalApi$114.class deleted file mode 100644 index 983a913f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$114.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$115.class b/target/classes/com/namsor/sdk2/api/PersonalApi$115.class deleted file mode 100644 index 34421257..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$115.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$116.class b/target/classes/com/namsor/sdk2/api/PersonalApi$116.class deleted file mode 100644 index 98bc8672..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$116.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$117.class b/target/classes/com/namsor/sdk2/api/PersonalApi$117.class deleted file mode 100644 index 29a05fec..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$117.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$118.class b/target/classes/com/namsor/sdk2/api/PersonalApi$118.class deleted file mode 100644 index 448b3d4a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$118.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$119.class b/target/classes/com/namsor/sdk2/api/PersonalApi$119.class deleted file mode 100644 index 0cfda59d..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$119.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$12.class b/target/classes/com/namsor/sdk2/api/PersonalApi$12.class deleted file mode 100644 index 071806bc..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$12.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$120.class b/target/classes/com/namsor/sdk2/api/PersonalApi$120.class deleted file mode 100644 index fe9b269a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$120.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$13.class b/target/classes/com/namsor/sdk2/api/PersonalApi$13.class deleted file mode 100644 index d914aa36..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$13.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$14.class b/target/classes/com/namsor/sdk2/api/PersonalApi$14.class deleted file mode 100644 index 3c2d51fc..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$14.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$15.class b/target/classes/com/namsor/sdk2/api/PersonalApi$15.class deleted file mode 100644 index 27958776..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$15.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$16.class b/target/classes/com/namsor/sdk2/api/PersonalApi$16.class deleted file mode 100644 index 3d901d2c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$16.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$17.class b/target/classes/com/namsor/sdk2/api/PersonalApi$17.class deleted file mode 100644 index c7403b82..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$17.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$18.class b/target/classes/com/namsor/sdk2/api/PersonalApi$18.class deleted file mode 100644 index c5a97d00..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$18.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$19.class b/target/classes/com/namsor/sdk2/api/PersonalApi$19.class deleted file mode 100644 index d2f312f1..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$19.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$2.class b/target/classes/com/namsor/sdk2/api/PersonalApi$2.class deleted file mode 100644 index 132e9c5f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$2.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$20.class b/target/classes/com/namsor/sdk2/api/PersonalApi$20.class deleted file mode 100644 index 092dc076..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$20.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$21.class b/target/classes/com/namsor/sdk2/api/PersonalApi$21.class deleted file mode 100644 index eeb40cbd..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$21.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$22.class b/target/classes/com/namsor/sdk2/api/PersonalApi$22.class deleted file mode 100644 index a7c0d007..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$22.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$23.class b/target/classes/com/namsor/sdk2/api/PersonalApi$23.class deleted file mode 100644 index 0bb961a9..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$23.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$24.class b/target/classes/com/namsor/sdk2/api/PersonalApi$24.class deleted file mode 100644 index d7d9a37a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$24.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$25.class b/target/classes/com/namsor/sdk2/api/PersonalApi$25.class deleted file mode 100644 index fa259218..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$25.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$26.class b/target/classes/com/namsor/sdk2/api/PersonalApi$26.class deleted file mode 100644 index 4a2ff6d1..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$26.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$27.class b/target/classes/com/namsor/sdk2/api/PersonalApi$27.class deleted file mode 100644 index 3b90572f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$27.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$28.class b/target/classes/com/namsor/sdk2/api/PersonalApi$28.class deleted file mode 100644 index 40bbb7b7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$28.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$29.class b/target/classes/com/namsor/sdk2/api/PersonalApi$29.class deleted file mode 100644 index 545451c7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$29.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$3.class b/target/classes/com/namsor/sdk2/api/PersonalApi$3.class deleted file mode 100644 index 17290b8c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$3.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$30.class b/target/classes/com/namsor/sdk2/api/PersonalApi$30.class deleted file mode 100644 index e5599bb3..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$30.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$31.class b/target/classes/com/namsor/sdk2/api/PersonalApi$31.class deleted file mode 100644 index 5f91329e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$31.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$32.class b/target/classes/com/namsor/sdk2/api/PersonalApi$32.class deleted file mode 100644 index ed92e965..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$32.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$33.class b/target/classes/com/namsor/sdk2/api/PersonalApi$33.class deleted file mode 100644 index dcd1f427..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$33.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$34.class b/target/classes/com/namsor/sdk2/api/PersonalApi$34.class deleted file mode 100644 index 377bbf5c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$34.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$35.class b/target/classes/com/namsor/sdk2/api/PersonalApi$35.class deleted file mode 100644 index 2ce23eb3..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$35.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$36.class b/target/classes/com/namsor/sdk2/api/PersonalApi$36.class deleted file mode 100644 index 2c548652..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$36.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$37.class b/target/classes/com/namsor/sdk2/api/PersonalApi$37.class deleted file mode 100644 index b29229f4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$37.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$38.class b/target/classes/com/namsor/sdk2/api/PersonalApi$38.class deleted file mode 100644 index b402cab2..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$38.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$39.class b/target/classes/com/namsor/sdk2/api/PersonalApi$39.class deleted file mode 100644 index 0b001286..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$39.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$4.class b/target/classes/com/namsor/sdk2/api/PersonalApi$4.class deleted file mode 100644 index 4d434ef8..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$4.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$40.class b/target/classes/com/namsor/sdk2/api/PersonalApi$40.class deleted file mode 100644 index 5889eb3c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$40.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$41.class b/target/classes/com/namsor/sdk2/api/PersonalApi$41.class deleted file mode 100644 index ccbc64d1..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$41.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$42.class b/target/classes/com/namsor/sdk2/api/PersonalApi$42.class deleted file mode 100644 index 3f48dc76..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$42.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$43.class b/target/classes/com/namsor/sdk2/api/PersonalApi$43.class deleted file mode 100644 index f246bda0..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$43.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$44.class b/target/classes/com/namsor/sdk2/api/PersonalApi$44.class deleted file mode 100644 index de5cefa5..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$44.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$45.class b/target/classes/com/namsor/sdk2/api/PersonalApi$45.class deleted file mode 100644 index 4bfcfc8b..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$45.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$46.class b/target/classes/com/namsor/sdk2/api/PersonalApi$46.class deleted file mode 100644 index d2dfa9b8..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$46.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$47.class b/target/classes/com/namsor/sdk2/api/PersonalApi$47.class deleted file mode 100644 index 607121f3..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$47.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$48.class b/target/classes/com/namsor/sdk2/api/PersonalApi$48.class deleted file mode 100644 index 2f7bbed2..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$48.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$49.class b/target/classes/com/namsor/sdk2/api/PersonalApi$49.class deleted file mode 100644 index 4cdca209..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$49.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$5.class b/target/classes/com/namsor/sdk2/api/PersonalApi$5.class deleted file mode 100644 index 68120e5c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$5.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$50.class b/target/classes/com/namsor/sdk2/api/PersonalApi$50.class deleted file mode 100644 index 12cfa100..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$50.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$51.class b/target/classes/com/namsor/sdk2/api/PersonalApi$51.class deleted file mode 100644 index 88ce7332..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$51.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$52.class b/target/classes/com/namsor/sdk2/api/PersonalApi$52.class deleted file mode 100644 index 17ac9262..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$52.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$53.class b/target/classes/com/namsor/sdk2/api/PersonalApi$53.class deleted file mode 100644 index 9e7d749f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$53.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$54.class b/target/classes/com/namsor/sdk2/api/PersonalApi$54.class deleted file mode 100644 index f9e80192..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$54.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$55.class b/target/classes/com/namsor/sdk2/api/PersonalApi$55.class deleted file mode 100644 index db758a32..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$55.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$56.class b/target/classes/com/namsor/sdk2/api/PersonalApi$56.class deleted file mode 100644 index bb61b9e1..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$56.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$57.class b/target/classes/com/namsor/sdk2/api/PersonalApi$57.class deleted file mode 100644 index eab6db7c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$57.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$58.class b/target/classes/com/namsor/sdk2/api/PersonalApi$58.class deleted file mode 100644 index eda9c41e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$58.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$59.class b/target/classes/com/namsor/sdk2/api/PersonalApi$59.class deleted file mode 100644 index 459f5a5f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$59.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$6.class b/target/classes/com/namsor/sdk2/api/PersonalApi$6.class deleted file mode 100644 index ff009cb4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$6.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$60.class b/target/classes/com/namsor/sdk2/api/PersonalApi$60.class deleted file mode 100644 index 67cc9384..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$60.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$61.class b/target/classes/com/namsor/sdk2/api/PersonalApi$61.class deleted file mode 100644 index 1088bd0e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$61.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$62.class b/target/classes/com/namsor/sdk2/api/PersonalApi$62.class deleted file mode 100644 index 1ac4753d..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$62.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$63.class b/target/classes/com/namsor/sdk2/api/PersonalApi$63.class deleted file mode 100644 index d3be5036..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$63.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$64.class b/target/classes/com/namsor/sdk2/api/PersonalApi$64.class deleted file mode 100644 index 24cadaaf..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$64.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$65.class b/target/classes/com/namsor/sdk2/api/PersonalApi$65.class deleted file mode 100644 index 81fdf919..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$65.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$66.class b/target/classes/com/namsor/sdk2/api/PersonalApi$66.class deleted file mode 100644 index 8780e28b..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$66.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$67.class b/target/classes/com/namsor/sdk2/api/PersonalApi$67.class deleted file mode 100644 index 0601eac6..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$67.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$68.class b/target/classes/com/namsor/sdk2/api/PersonalApi$68.class deleted file mode 100644 index ef6fa7e7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$68.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$69.class b/target/classes/com/namsor/sdk2/api/PersonalApi$69.class deleted file mode 100644 index ec6eac1f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$69.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$7.class b/target/classes/com/namsor/sdk2/api/PersonalApi$7.class deleted file mode 100644 index 75f40646..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$7.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$70.class b/target/classes/com/namsor/sdk2/api/PersonalApi$70.class deleted file mode 100644 index 7c215d16..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$70.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$71.class b/target/classes/com/namsor/sdk2/api/PersonalApi$71.class deleted file mode 100644 index 28493249..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$71.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$72.class b/target/classes/com/namsor/sdk2/api/PersonalApi$72.class deleted file mode 100644 index 03e5838e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$72.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$73.class b/target/classes/com/namsor/sdk2/api/PersonalApi$73.class deleted file mode 100644 index c13561ab..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$73.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$74.class b/target/classes/com/namsor/sdk2/api/PersonalApi$74.class deleted file mode 100644 index cb7c2f78..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$74.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$75.class b/target/classes/com/namsor/sdk2/api/PersonalApi$75.class deleted file mode 100644 index 51ca3ae7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$75.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$76.class b/target/classes/com/namsor/sdk2/api/PersonalApi$76.class deleted file mode 100644 index f8de706f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$76.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$77.class b/target/classes/com/namsor/sdk2/api/PersonalApi$77.class deleted file mode 100644 index 20362a1d..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$77.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$78.class b/target/classes/com/namsor/sdk2/api/PersonalApi$78.class deleted file mode 100644 index 08e0b0d0..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$78.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$79.class b/target/classes/com/namsor/sdk2/api/PersonalApi$79.class deleted file mode 100644 index 2fa52093..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$79.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$8.class b/target/classes/com/namsor/sdk2/api/PersonalApi$8.class deleted file mode 100644 index 2e157074..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$8.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$80.class b/target/classes/com/namsor/sdk2/api/PersonalApi$80.class deleted file mode 100644 index e74e75e7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$80.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$81.class b/target/classes/com/namsor/sdk2/api/PersonalApi$81.class deleted file mode 100644 index b3157cf0..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$81.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$82.class b/target/classes/com/namsor/sdk2/api/PersonalApi$82.class deleted file mode 100644 index 33822a92..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$82.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$83.class b/target/classes/com/namsor/sdk2/api/PersonalApi$83.class deleted file mode 100644 index ef1cd946..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$83.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$84.class b/target/classes/com/namsor/sdk2/api/PersonalApi$84.class deleted file mode 100644 index ab15f69a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$84.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$85.class b/target/classes/com/namsor/sdk2/api/PersonalApi$85.class deleted file mode 100644 index fe3c43cd..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$85.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$86.class b/target/classes/com/namsor/sdk2/api/PersonalApi$86.class deleted file mode 100644 index c7aa04aa..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$86.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$87.class b/target/classes/com/namsor/sdk2/api/PersonalApi$87.class deleted file mode 100644 index 45138d75..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$87.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$88.class b/target/classes/com/namsor/sdk2/api/PersonalApi$88.class deleted file mode 100644 index 652daa58..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$88.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$89.class b/target/classes/com/namsor/sdk2/api/PersonalApi$89.class deleted file mode 100644 index 38a34e49..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$89.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$9.class b/target/classes/com/namsor/sdk2/api/PersonalApi$9.class deleted file mode 100644 index 0a0a0d3e..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$9.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$90.class b/target/classes/com/namsor/sdk2/api/PersonalApi$90.class deleted file mode 100644 index dca52f48..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$90.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$91.class b/target/classes/com/namsor/sdk2/api/PersonalApi$91.class deleted file mode 100644 index 2f51571f..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$91.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$92.class b/target/classes/com/namsor/sdk2/api/PersonalApi$92.class deleted file mode 100644 index 290845a4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$92.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$93.class b/target/classes/com/namsor/sdk2/api/PersonalApi$93.class deleted file mode 100644 index 3ef2f8ef..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$93.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$94.class b/target/classes/com/namsor/sdk2/api/PersonalApi$94.class deleted file mode 100644 index 2e0dadb7..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$94.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$95.class b/target/classes/com/namsor/sdk2/api/PersonalApi$95.class deleted file mode 100644 index 633db261..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$95.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$96.class b/target/classes/com/namsor/sdk2/api/PersonalApi$96.class deleted file mode 100644 index c4ff7901..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$96.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$97.class b/target/classes/com/namsor/sdk2/api/PersonalApi$97.class deleted file mode 100644 index fc231df4..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$97.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$98.class b/target/classes/com/namsor/sdk2/api/PersonalApi$98.class deleted file mode 100644 index f966fca8..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$98.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi$99.class b/target/classes/com/namsor/sdk2/api/PersonalApi$99.class deleted file mode 100644 index 6e38e221..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi$99.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/PersonalApi.class b/target/classes/com/namsor/sdk2/api/PersonalApi.class deleted file mode 100644 index 33baf0a6..00000000 Binary files a/target/classes/com/namsor/sdk2/api/PersonalApi.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$1.class b/target/classes/com/namsor/sdk2/api/SocialApi$1.class deleted file mode 100644 index 105a4429..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$10.class b/target/classes/com/namsor/sdk2/api/SocialApi$10.class deleted file mode 100644 index c1f082de..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$10.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$11.class b/target/classes/com/namsor/sdk2/api/SocialApi$11.class deleted file mode 100644 index 47e1ceb5..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$11.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$12.class b/target/classes/com/namsor/sdk2/api/SocialApi$12.class deleted file mode 100644 index 9d600eb5..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$12.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$13.class b/target/classes/com/namsor/sdk2/api/SocialApi$13.class deleted file mode 100644 index 59f125d9..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$13.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$14.class b/target/classes/com/namsor/sdk2/api/SocialApi$14.class deleted file mode 100644 index 099cbe84..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$14.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$15.class b/target/classes/com/namsor/sdk2/api/SocialApi$15.class deleted file mode 100644 index d8199674..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$15.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$16.class b/target/classes/com/namsor/sdk2/api/SocialApi$16.class deleted file mode 100644 index a0e7b510..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$16.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$17.class b/target/classes/com/namsor/sdk2/api/SocialApi$17.class deleted file mode 100644 index 8bb3f52b..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$17.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$18.class b/target/classes/com/namsor/sdk2/api/SocialApi$18.class deleted file mode 100644 index 6372ff55..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$18.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$19.class b/target/classes/com/namsor/sdk2/api/SocialApi$19.class deleted file mode 100644 index 03399e0a..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$19.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$2.class b/target/classes/com/namsor/sdk2/api/SocialApi$2.class deleted file mode 100644 index 1e8de60c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$2.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$20.class b/target/classes/com/namsor/sdk2/api/SocialApi$20.class deleted file mode 100644 index 24c1ebee..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$20.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$21.class b/target/classes/com/namsor/sdk2/api/SocialApi$21.class deleted file mode 100644 index e8412369..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$21.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$22.class b/target/classes/com/namsor/sdk2/api/SocialApi$22.class deleted file mode 100644 index 579f873c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$22.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$23.class b/target/classes/com/namsor/sdk2/api/SocialApi$23.class deleted file mode 100644 index 1a0a84ed..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$23.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$24.class b/target/classes/com/namsor/sdk2/api/SocialApi$24.class deleted file mode 100644 index 8acfba28..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$24.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$25.class b/target/classes/com/namsor/sdk2/api/SocialApi$25.class deleted file mode 100644 index cdda65dd..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$25.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$3.class b/target/classes/com/namsor/sdk2/api/SocialApi$3.class deleted file mode 100644 index d88d3bf8..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$3.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$4.class b/target/classes/com/namsor/sdk2/api/SocialApi$4.class deleted file mode 100644 index 7fe209ea..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$4.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$5.class b/target/classes/com/namsor/sdk2/api/SocialApi$5.class deleted file mode 100644 index b10cf861..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$5.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$6.class b/target/classes/com/namsor/sdk2/api/SocialApi$6.class deleted file mode 100644 index 43f5f667..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$6.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$7.class b/target/classes/com/namsor/sdk2/api/SocialApi$7.class deleted file mode 100644 index 896dae5c..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$7.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$8.class b/target/classes/com/namsor/sdk2/api/SocialApi$8.class deleted file mode 100644 index 04bdb539..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$8.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi$9.class b/target/classes/com/namsor/sdk2/api/SocialApi$9.class deleted file mode 100644 index 78c964cb..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi$9.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/api/SocialApi.class b/target/classes/com/namsor/sdk2/api/SocialApi.class deleted file mode 100644 index 6b0b884b..00000000 Binary files a/target/classes/com/namsor/sdk2/api/SocialApi.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiCallback.class b/target/classes/com/namsor/sdk2/invoke/ApiCallback.class deleted file mode 100644 index e7b9112a..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiCallback.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiClient$1.class b/target/classes/com/namsor/sdk2/invoke/ApiClient$1.class deleted file mode 100644 index 61900b20..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiClient$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiClient$2.class b/target/classes/com/namsor/sdk2/invoke/ApiClient$2.class deleted file mode 100644 index 38131c4d..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiClient$2.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiClient$3.class b/target/classes/com/namsor/sdk2/invoke/ApiClient$3.class deleted file mode 100644 index e9905fae..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiClient$3.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiClient.class b/target/classes/com/namsor/sdk2/invoke/ApiClient.class deleted file mode 100644 index 6cbf5acc..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiClient.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiException.class b/target/classes/com/namsor/sdk2/invoke/ApiException.class deleted file mode 100644 index 222288f8..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiException.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ApiResponse.class b/target/classes/com/namsor/sdk2/invoke/ApiResponse.class deleted file mode 100644 index d6bac26f..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ApiResponse.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/Configuration.class b/target/classes/com/namsor/sdk2/invoke/Configuration.class deleted file mode 100644 index 1fecfcdb..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/Configuration.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor$1.class b/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor$1.class deleted file mode 100644 index 1d8459b0..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor$2.class b/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor$2.class deleted file mode 100644 index e51adf64..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor$2.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor.class b/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor.class deleted file mode 100644 index 11e97ae3..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/GzipRequestInterceptor.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON$1.class b/target/classes/com/namsor/sdk2/invoke/JSON$1.class deleted file mode 100644 index 25632032..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON$ByteArrayAdapter.class b/target/classes/com/namsor/sdk2/invoke/JSON$ByteArrayAdapter.class deleted file mode 100644 index d9fa454e..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON$ByteArrayAdapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON$DateTypeAdapter.class b/target/classes/com/namsor/sdk2/invoke/JSON$DateTypeAdapter.class deleted file mode 100644 index dbf6a69d..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON$DateTypeAdapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON$LocalDateTypeAdapter.class b/target/classes/com/namsor/sdk2/invoke/JSON$LocalDateTypeAdapter.class deleted file mode 100644 index 117cdeba..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON$LocalDateTypeAdapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON$OffsetDateTimeTypeAdapter.class b/target/classes/com/namsor/sdk2/invoke/JSON$OffsetDateTimeTypeAdapter.class deleted file mode 100644 index 28b65666..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON$OffsetDateTimeTypeAdapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON$SqlDateTypeAdapter.class b/target/classes/com/namsor/sdk2/invoke/JSON$SqlDateTypeAdapter.class deleted file mode 100644 index 8e9f88e4..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON$SqlDateTypeAdapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/JSON.class b/target/classes/com/namsor/sdk2/invoke/JSON.class deleted file mode 100644 index 5c977167..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/JSON.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/Pair.class b/target/classes/com/namsor/sdk2/invoke/Pair.class deleted file mode 100644 index 9f42f909..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/Pair.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody$1.class b/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody$1.class deleted file mode 100644 index bc4ebd84..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody$ProgressRequestListener.class b/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody$ProgressRequestListener.class deleted file mode 100644 index 45b3ef87..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody$ProgressRequestListener.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody.class b/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody.class deleted file mode 100644 index edc9ff0e..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ProgressRequestBody.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody$1.class b/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody$1.class deleted file mode 100644 index cbaf8a2b..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody$ProgressListener.class b/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody$ProgressListener.class deleted file mode 100644 index 97eda53e..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody$ProgressListener.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody.class b/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody.class deleted file mode 100644 index 61fadcab..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/ProgressResponseBody.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/StringUtil.class b/target/classes/com/namsor/sdk2/invoke/StringUtil.class deleted file mode 100644 index 2fbea3e9..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/StringUtil.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/ApiKeyAuth.class b/target/classes/com/namsor/sdk2/invoke/auth/ApiKeyAuth.class deleted file mode 100644 index a5beaf11..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/ApiKeyAuth.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/Authentication.class b/target/classes/com/namsor/sdk2/invoke/auth/Authentication.class deleted file mode 100644 index 511deb85..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/Authentication.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/HttpBasicAuth.class b/target/classes/com/namsor/sdk2/invoke/auth/HttpBasicAuth.class deleted file mode 100644 index a7a4d823..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/HttpBasicAuth.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/OAuth.class b/target/classes/com/namsor/sdk2/invoke/auth/OAuth.class deleted file mode 100644 index c170d604..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/OAuth.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/OAuthFlow.class b/target/classes/com/namsor/sdk2/invoke/auth/OAuthFlow.class deleted file mode 100644 index 6295d83c..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/OAuthFlow.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.class b/target/classes/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.class deleted file mode 100644 index 12dc419e..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/RetryingOAuth$1.class b/target/classes/com/namsor/sdk2/invoke/auth/RetryingOAuth$1.class deleted file mode 100644 index 48f0a8bc..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/RetryingOAuth$1.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/invoke/auth/RetryingOAuth.class b/target/classes/com/namsor/sdk2/invoke/auth/RetryingOAuth.class deleted file mode 100644 index a3f84c35..00000000 Binary files a/target/classes/com/namsor/sdk2/invoke/auth/RetryingOAuth.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIBillingPeriodUsageOut.class b/target/classes/com/namsor/sdk2/model/APIBillingPeriodUsageOut.class deleted file mode 100644 index 3a729d4f..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIBillingPeriodUsageOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APICounterV2Out.class b/target/classes/com/namsor/sdk2/model/APICounterV2Out.class deleted file mode 100644 index d0f5caf5..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APICounterV2Out.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIKeyOut.class b/target/classes/com/namsor/sdk2/model/APIKeyOut.class deleted file mode 100644 index fc1044ba..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIKeyOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIPeriodUsageOut.class b/target/classes/com/namsor/sdk2/model/APIPeriodUsageOut.class deleted file mode 100644 index ef366909..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIPeriodUsageOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIPlanSubscriptionOut.class b/target/classes/com/namsor/sdk2/model/APIPlanSubscriptionOut.class deleted file mode 100644 index 2fc4132f..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIPlanSubscriptionOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIServiceOut.class b/target/classes/com/namsor/sdk2/model/APIServiceOut.class deleted file mode 100644 index a7ed435c..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIServiceOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIServicesOut.class b/target/classes/com/namsor/sdk2/model/APIServicesOut.class deleted file mode 100644 index 4928f67b..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIServicesOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/APIUsageAggregatedOut.class b/target/classes/com/namsor/sdk2/model/APIUsageAggregatedOut.class deleted file mode 100644 index da9a4ab1..00000000 Binary files a/target/classes/com/namsor/sdk2/model/APIUsageAggregatedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.class deleted file mode 100644 index ce5037b8..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.class deleted file mode 100644 index 598f9abd..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.class deleted file mode 100644 index 2cc88e57..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.class deleted file mode 100644 index 384e2b62..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.class deleted file mode 100644 index e19b2739..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameIn.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameIn.class deleted file mode 100644 index 89ba8c97..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.class deleted file mode 100644 index a9a7a698..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.class deleted file mode 100644 index 1bc2bcde..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.class deleted file mode 100644 index eb2394c6..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.class deleted file mode 100644 index ad6d365e..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.class b/target/classes/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.class deleted file mode 100644 index 06a444d4..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.class b/target/classes/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.class deleted file mode 100644 index d5b3c944..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.class b/target/classes/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.class deleted file mode 100644 index d4eae6a1..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchPersonalNameGeoIn.class b/target/classes/com/namsor/sdk2/model/BatchPersonalNameGeoIn.class deleted file mode 100644 index a9b39dec..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchPersonalNameGeoIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchPersonalNameGeoOut.class b/target/classes/com/namsor/sdk2/model/BatchPersonalNameGeoOut.class deleted file mode 100644 index d116be67..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchPersonalNameGeoOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchPersonalNameIn.class b/target/classes/com/namsor/sdk2/model/BatchPersonalNameIn.class deleted file mode 100644 index 5315e3b5..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchPersonalNameIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/BatchPersonalNameParsedOut.class b/target/classes/com/namsor/sdk2/model/BatchPersonalNameParsedOut.class deleted file mode 100644 index 8d44152f..00000000 Binary files a/target/classes/com/namsor/sdk2/model/BatchPersonalNameParsedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FeedbackLoopOut.class b/target/classes/com/namsor/sdk2/model/FeedbackLoopOut.class deleted file mode 100644 index 7100d199..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FeedbackLoopOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.class b/target/classes/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.class deleted file mode 100644 index 8dbca9d4..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderIn.class b/target/classes/com/namsor/sdk2/model/FirstLastNameGenderIn.class deleted file mode 100644 index b87f329b..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum$Adapter.class b/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum$Adapter.class deleted file mode 100644 index b40c04aa..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum$Adapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum.class b/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum.class deleted file mode 100644 index c035e5ae..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut.class b/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut.class deleted file mode 100644 index 700870ea..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameGenderedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameGeoIn.class b/target/classes/com/namsor/sdk2/model/FirstLastNameGeoIn.class deleted file mode 100644 index 5abe6e49..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameGeoIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.class b/target/classes/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.class deleted file mode 100644 index f33dd396..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameIn.class b/target/classes/com/namsor/sdk2/model/FirstLastNameIn.class deleted file mode 100644 index 4d4678b1..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameOriginedOut.class b/target/classes/com/namsor/sdk2/model/FirstLastNameOriginedOut.class deleted file mode 100644 index a25becc8..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameOriginedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameOut.class b/target/classes/com/namsor/sdk2/model/FirstLastNameOut.class deleted file mode 100644 index 3273cd97..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.class b/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.class deleted file mode 100644 index 3bd4a977..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.class b/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.class deleted file mode 100644 index 04a40328..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.class b/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.class deleted file mode 100644 index d7430cec..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum$Adapter.class b/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum$Adapter.class deleted file mode 100644 index d12de76d..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum$Adapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum.class b/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum.class deleted file mode 100644 index d39bdd24..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum$Adapter.class b/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum$Adapter.class deleted file mode 100644 index d55da5a3..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum$Adapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum.class b/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum.class deleted file mode 100644 index be820c4a..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.class b/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.class deleted file mode 100644 index 412d0c91..00000000 Binary files a/target/classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/NameMatchCandidateOut.class b/target/classes/com/namsor/sdk2/model/NameMatchCandidateOut.class deleted file mode 100644 index 24f086ee..00000000 Binary files a/target/classes/com/namsor/sdk2/model/NameMatchCandidateOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/NameMatchCandidatesOut.class b/target/classes/com/namsor/sdk2/model/NameMatchCandidatesOut.class deleted file mode 100644 index f9c48981..00000000 Binary files a/target/classes/com/namsor/sdk2/model/NameMatchCandidatesOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum$Adapter.class b/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum$Adapter.class deleted file mode 100644 index 332bbfad..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum$Adapter.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum.class b/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum.class deleted file mode 100644 index 2d2d92f6..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut.class b/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut.class deleted file mode 100644 index 8a1a9d8a..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameGenderedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameGeoIn.class b/target/classes/com/namsor/sdk2/model/PersonalNameGeoIn.class deleted file mode 100644 index 49f6e0ac..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameGeoIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameGeoOut.class b/target/classes/com/namsor/sdk2/model/PersonalNameGeoOut.class deleted file mode 100644 index 9254f9a0..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameGeoOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameIn.class b/target/classes/com/namsor/sdk2/model/PersonalNameIn.class deleted file mode 100644 index 620e9d39..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameIn.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/PersonalNameParsedOut.class b/target/classes/com/namsor/sdk2/model/PersonalNameParsedOut.class deleted file mode 100644 index 995362a0..00000000 Binary files a/target/classes/com/namsor/sdk2/model/PersonalNameParsedOut.class and /dev/null differ diff --git a/target/classes/com/namsor/sdk2/model/SoftwareVersionOut.class b/target/classes/com/namsor/sdk2/model/SoftwareVersionOut.class deleted file mode 100644 index 6c026dfa..00000000 Binary files a/target/classes/com/namsor/sdk2/model/SoftwareVersionOut.class and /dev/null differ diff --git a/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml deleted file mode 100644 index 8b89c977..00000000 --- a/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - src/main/javadoc - diff --git a/target/javadoc-bundle-options/package-list b/target/javadoc-bundle-options/package-list deleted file mode 100644 index 59d42328..00000000 --- a/target/javadoc-bundle-options/package-list +++ /dev/null @@ -1,217 +0,0 @@ -java.applet -java.awt -java.awt.color -java.awt.datatransfer -java.awt.dnd -java.awt.event -java.awt.font -java.awt.geom -java.awt.im -java.awt.im.spi -java.awt.image -java.awt.image.renderable -java.awt.print -java.beans -java.beans.beancontext -java.io -java.lang -java.lang.annotation -java.lang.instrument -java.lang.invoke -java.lang.management -java.lang.ref -java.lang.reflect -java.math -java.net -java.nio -java.nio.channels -java.nio.channels.spi -java.nio.charset -java.nio.charset.spi -java.nio.file -java.nio.file.attribute -java.nio.file.spi -java.rmi -java.rmi.activation -java.rmi.dgc -java.rmi.registry -java.rmi.server -java.security -java.security.acl -java.security.cert -java.security.interfaces -java.security.spec -java.sql -java.text -java.text.spi -java.time -java.time.chrono -java.time.format -java.time.temporal -java.time.zone -java.util -java.util.concurrent -java.util.concurrent.atomic -java.util.concurrent.locks -java.util.function -java.util.jar -java.util.logging -java.util.prefs -java.util.regex -java.util.spi -java.util.stream -java.util.zip -javax.accessibility -javax.activation -javax.activity -javax.annotation -javax.annotation.processing -javax.crypto -javax.crypto.interfaces -javax.crypto.spec -javax.imageio -javax.imageio.event -javax.imageio.metadata -javax.imageio.plugins.bmp -javax.imageio.plugins.jpeg -javax.imageio.spi -javax.imageio.stream -javax.jws -javax.jws.soap -javax.lang.model -javax.lang.model.element -javax.lang.model.type -javax.lang.model.util -javax.management -javax.management.loading -javax.management.modelmbean -javax.management.monitor -javax.management.openmbean -javax.management.relation -javax.management.remote -javax.management.remote.rmi -javax.management.timer -javax.naming -javax.naming.directory -javax.naming.event -javax.naming.ldap -javax.naming.spi -javax.net -javax.net.ssl -javax.print -javax.print.attribute -javax.print.attribute.standard -javax.print.event -javax.rmi -javax.rmi.CORBA -javax.rmi.ssl -javax.script -javax.security.auth -javax.security.auth.callback -javax.security.auth.kerberos -javax.security.auth.login -javax.security.auth.spi -javax.security.auth.x500 -javax.security.cert -javax.security.sasl -javax.sound.midi -javax.sound.midi.spi -javax.sound.sampled -javax.sound.sampled.spi -javax.sql -javax.sql.rowset -javax.sql.rowset.serial -javax.sql.rowset.spi -javax.swing -javax.swing.border -javax.swing.colorchooser -javax.swing.event -javax.swing.filechooser -javax.swing.plaf -javax.swing.plaf.basic -javax.swing.plaf.metal -javax.swing.plaf.multi -javax.swing.plaf.nimbus -javax.swing.plaf.synth -javax.swing.table -javax.swing.text -javax.swing.text.html -javax.swing.text.html.parser -javax.swing.text.rtf -javax.swing.tree -javax.swing.undo -javax.tools -javax.transaction -javax.transaction.xa -javax.xml -javax.xml.bind -javax.xml.bind.annotation -javax.xml.bind.annotation.adapters -javax.xml.bind.attachment -javax.xml.bind.helpers -javax.xml.bind.util -javax.xml.crypto -javax.xml.crypto.dom -javax.xml.crypto.dsig -javax.xml.crypto.dsig.dom -javax.xml.crypto.dsig.keyinfo -javax.xml.crypto.dsig.spec -javax.xml.datatype -javax.xml.namespace -javax.xml.parsers -javax.xml.soap -javax.xml.stream -javax.xml.stream.events -javax.xml.stream.util -javax.xml.transform -javax.xml.transform.dom -javax.xml.transform.sax -javax.xml.transform.stax -javax.xml.transform.stream -javax.xml.validation -javax.xml.ws -javax.xml.ws.handler -javax.xml.ws.handler.soap -javax.xml.ws.http -javax.xml.ws.soap -javax.xml.ws.spi -javax.xml.ws.spi.http -javax.xml.ws.wsaddressing -javax.xml.xpath -org.ietf.jgss -org.omg.CORBA -org.omg.CORBA.DynAnyPackage -org.omg.CORBA.ORBPackage -org.omg.CORBA.TypeCodePackage -org.omg.CORBA.portable -org.omg.CORBA_2_3 -org.omg.CORBA_2_3.portable -org.omg.CosNaming -org.omg.CosNaming.NamingContextExtPackage -org.omg.CosNaming.NamingContextPackage -org.omg.Dynamic -org.omg.DynamicAny -org.omg.DynamicAny.DynAnyFactoryPackage -org.omg.DynamicAny.DynAnyPackage -org.omg.IOP -org.omg.IOP.CodecFactoryPackage -org.omg.IOP.CodecPackage -org.omg.Messaging -org.omg.PortableInterceptor -org.omg.PortableInterceptor.ORBInitInfoPackage -org.omg.PortableServer -org.omg.PortableServer.CurrentPackage -org.omg.PortableServer.POAManagerPackage -org.omg.PortableServer.POAPackage -org.omg.PortableServer.ServantLocatorPackage -org.omg.PortableServer.portable -org.omg.SendingContext -org.omg.stub.java.rmi -org.w3c.dom -org.w3c.dom.bootstrap -org.w3c.dom.events -org.w3c.dom.ls -org.w3c.dom.views -org.xml.sax -org.xml.sax.ext -org.xml.sax.helpers diff --git a/target/lib/commons-codec-1.9.jar b/target/lib/commons-codec-1.9.jar deleted file mode 100644 index ef35f1c5..00000000 Binary files a/target/lib/commons-codec-1.9.jar and /dev/null differ diff --git a/target/lib/commons-lang3-3.8.1.jar b/target/lib/commons-lang3-3.8.1.jar deleted file mode 100644 index 2c65ce67..00000000 Binary files a/target/lib/commons-lang3-3.8.1.jar and /dev/null differ diff --git a/target/lib/gson-2.8.1.jar b/target/lib/gson-2.8.1.jar deleted file mode 100644 index 5222355a..00000000 Binary files a/target/lib/gson-2.8.1.jar and /dev/null differ diff --git a/target/lib/gson-fire-1.8.0.jar b/target/lib/gson-fire-1.8.0.jar deleted file mode 100644 index 6367440c..00000000 Binary files a/target/lib/gson-fire-1.8.0.jar and /dev/null differ diff --git a/target/lib/hamcrest-core-1.3.jar b/target/lib/hamcrest-core-1.3.jar deleted file mode 100644 index 9d5fe16e..00000000 Binary files a/target/lib/hamcrest-core-1.3.jar and /dev/null differ diff --git a/target/lib/json-20140107.jar b/target/lib/json-20140107.jar deleted file mode 100644 index 40a325db..00000000 Binary files a/target/lib/json-20140107.jar and /dev/null differ diff --git a/target/lib/junit-4.12.jar b/target/lib/junit-4.12.jar deleted file mode 100644 index 3a7fc266..00000000 Binary files a/target/lib/junit-4.12.jar and /dev/null differ diff --git a/target/lib/logging-interceptor-2.7.5.jar b/target/lib/logging-interceptor-2.7.5.jar deleted file mode 100644 index 444a41fd..00000000 Binary files a/target/lib/logging-interceptor-2.7.5.jar and /dev/null differ diff --git a/target/lib/okhttp-2.7.5.jar b/target/lib/okhttp-2.7.5.jar deleted file mode 100644 index e6df064f..00000000 Binary files a/target/lib/okhttp-2.7.5.jar and /dev/null differ diff --git a/target/lib/okio-1.6.0.jar b/target/lib/okio-1.6.0.jar deleted file mode 100644 index c87be599..00000000 Binary files a/target/lib/okio-1.6.0.jar and /dev/null differ diff --git a/target/lib/org.apache.oltu.oauth2.client-1.0.1.jar b/target/lib/org.apache.oltu.oauth2.client-1.0.1.jar deleted file mode 100644 index 79bd93a7..00000000 Binary files a/target/lib/org.apache.oltu.oauth2.client-1.0.1.jar and /dev/null differ diff --git a/target/lib/org.apache.oltu.oauth2.common-1.0.1.jar b/target/lib/org.apache.oltu.oauth2.common-1.0.1.jar deleted file mode 100644 index 6e8f105f..00000000 Binary files a/target/lib/org.apache.oltu.oauth2.common-1.0.1.jar and /dev/null differ diff --git a/target/lib/slf4j-api-1.7.7.jar b/target/lib/slf4j-api-1.7.7.jar deleted file mode 100644 index bebabd96..00000000 Binary files a/target/lib/slf4j-api-1.7.7.jar and /dev/null differ diff --git a/target/lib/swagger-annotations-1.5.18.jar b/target/lib/swagger-annotations-1.5.18.jar deleted file mode 100644 index 278484a0..00000000 Binary files a/target/lib/swagger-annotations-1.5.18.jar and /dev/null differ diff --git a/target/lib/threetenbp-1.3.5.jar b/target/lib/threetenbp-1.3.5.jar deleted file mode 100644 index 0d6a012f..00000000 Binary files a/target/lib/threetenbp-1.3.5.jar and /dev/null differ diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties deleted file mode 100644 index 0ebee04e..00000000 --- a/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Mon Jun 19 10:33:40 CEST 2023 -version=2.0.26 -groupId=com.namsor -artifactId=namsor-sdk2 diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 501ef17c..00000000 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1,575 +0,0 @@ -com/namsor/sdk2/api/PersonalApi$37.class -com/namsor/sdk2/model/BatchPersonalNameGeoSubdivisionIn.class -com/namsor/sdk2/api/JapaneseApi$32.class -com/namsor/sdk2/api/PersonalApi$140.class -com/namsor/sdk2/api/ChineseApi$53.class -com/namsor/sdk2/api/JapaneseApi$45.class -com/namsor/sdk2/model/FeedbackLoopOut.class -com/namsor/sdk2/model/BatchPersonalNameSubdivisionIn.class -com/namsor/sdk2/api/ChineseApi$13.class -com/namsor/sdk2/api/AdminApi$51.class -com/namsor/sdk2/api/JapaneseApi$72.class -com/namsor/sdk2/api/IndianApi$21.class -com/namsor/sdk2/api/AdminApi$29.class -com/namsor/sdk2/api/AdminApi$11.class -com/namsor/sdk2/api/ChineseApi$26.class -com/namsor/sdk2/api/ChineseApi$66.class -com/namsor/sdk2/model/BatchPersonalNameIn.class -com/namsor/sdk2/api/JapaneseApi$18.class -com/namsor/sdk2/api/PersonalApi$113.class -com/namsor/sdk2/api/IndianApi$39.class -com/namsor/sdk2/invoke/ApiClient$2.class -com/namsor/sdk2/api/AdminApi$24.class -com/namsor/sdk2/model/BatchFirstLastNameGeoSubclassificationOut.class -com/namsor/sdk2/api/ChineseApi$18.class -com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.class -com/namsor/sdk2/invoke/JSON$SqlDateTypeAdapter.class -com/namsor/sdk2/api/PersonalApi$145.class -com/namsor/sdk2/api/PersonalApi$64.class -com/namsor/sdk2/api/IndianApi$6.class -com/namsor/sdk2/api/PersonalApi$105.class -com/namsor/sdk2/api/PersonalApi$9.class -com/namsor/sdk2/api/PersonalApi$24.class -com/namsor/sdk2/api/ChineseApi$40.class -com/namsor/sdk2/api/SocialApi$18.class -com/namsor/sdk2/api/PersonalApi$72.class -com/namsor/sdk2/api/JapaneseApi$1.class -com/namsor/sdk2/model/PersonalNameGeoIn.class -com/namsor/sdk2/api/JapaneseApi$58.class -com/namsor/sdk2/api/PersonalApi$153.class -com/namsor/sdk2/api/AdminApi$7.class -com/namsor/sdk2/model/PersonalNameReligionedOut.class -com/namsor/sdk2/api/IndianApi$13.class -com/namsor/sdk2/api/PersonalApi$132.class -com/namsor/sdk2/api/ChineseApi$45.class -com/namsor/sdk2/api/PersonalApi$32.class -com/namsor/sdk2/api/PersonalApi$139.class -com/namsor/sdk2/model/APIClassifierTaxonomyOut.class -com/namsor/sdk2/api/JapaneseApi$40.class -com/namsor/sdk2/api/AdminApi$43.class -com/namsor/sdk2/api/ChineseApi$58.class -com/namsor/sdk2/api/AdminApi$37.class -com/namsor/sdk2/model/FirstLastNameOriginedOut.class -com/namsor/sdk2/model/NameGeoIn.class -com/namsor/sdk2/api/JapaneseApi$24.class -com/namsor/sdk2/api/JapaneseApi$64.class -com/namsor/sdk2/api/ChineseApi$39.class -com/namsor/sdk2/api/JapaneseApi$37.class -com/namsor/sdk2/api/ChineseApi$21.class -com/namsor/sdk2/api/ChineseApi$61.class -com/namsor/sdk2/api/IndianApi$26.class -com/namsor/sdk2/api/PersonalApi$4.class -com/namsor/sdk2/api/SocialApi$24.class -com/namsor/sdk2/api/ChineseApi$34.class -com/namsor/sdk2/api/PersonalApi$126.class -com/namsor/sdk2/api/JapaneseApi$6.class -com/namsor/sdk2/api/SocialApi$13.class -com/namsor/sdk2/api/AdminApi$48.class -com/namsor/sdk2/api/PersonalApi$77.class -com/namsor/sdk2/api/JapaneseApi$53.class -com/namsor/sdk2/api/SocialApi$5.class -com/namsor/sdk2/api/AdminApi$30.class -com/namsor/sdk2/api/JapaneseApi$13.class -com/namsor/sdk2/invoke/ProgressRequestBody$ProgressRequestListener.class -com/namsor/sdk2/invoke/ApiClient.class -com/namsor/sdk2/api/PersonalApi$80.class -com/namsor/sdk2/api/PersonalApi$147.class -com/namsor/sdk2/model/APICounterV2Out.class -com/namsor/sdk2/api/PersonalApi$30.class -com/namsor/sdk2/model/APIPlanSubscriptionOut.class -com/namsor/sdk2/invoke/ApiException.class -com/namsor/sdk2/api/JapaneseApi$39.class -com/namsor/sdk2/api/IndianApi$28.class -com/namsor/sdk2/api/AdminApi$9.class -com/namsor/sdk2/api/JapaneseApi$69.class -com/namsor/sdk2/invoke/ProgressRequestBody$1.class -com/namsor/sdk2/api/PersonalApi$124.class -com/namsor/sdk2/api/PersonalApi$53.class -com/namsor/sdk2/api/PersonalApi$43.class -com/namsor/sdk2/model/BatchProperNounCategorizedOut.class -com/namsor/sdk2/api/IndianApi$32.class -com/namsor/sdk2/api/JapaneseApi$51.class -com/namsor/sdk2/api/PersonalApi$18.class -com/namsor/sdk2/api/GeneralApi$14.class -com/namsor/sdk2/api/ChineseApi$64.class -com/namsor/sdk2/api/SocialApi$11.class -com/namsor/sdk2/api/JapaneseApi$66.class -com/namsor/sdk2/api/PersonalApi$96.class -com/namsor/sdk2/model/SoftwareVersionOut.class -com/namsor/sdk2/model/FirstLastNameIn.class -com/namsor/sdk2/api/IndianApi$40.class -com/namsor/sdk2/api/AdminApi$32.class -com/namsor/sdk2/api/PersonalApi$121.class -com/namsor/sdk2/model/FirstLastNameGeoZippedIn.class -com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.class -com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.class -com/namsor/sdk2/api/GeneralApi$6.class -com/namsor/sdk2/api/IndianApi.class -com/namsor/sdk2/api/ChineseApi$3.class -com/namsor/sdk2/invoke/ApiResponse.class -com/namsor/sdk2/model/NameMatchCandidateOut.class -com/namsor/sdk2/api/AdminApi$40.class -com/namsor/sdk2/api/AdminApi$35.class -com/namsor/sdk2/api/JapaneseApi$43.class -com/namsor/sdk2/api/PersonalApi$22.class -com/namsor/sdk2/api/ChineseApi$15.class -com/namsor/sdk2/model/BatchPersonalNameGenderedOut.class -com/namsor/sdk2/api/PersonalApi.class -com/namsor/sdk2/model/NameMatchedOut$MatchStatusEnum.class -com/namsor/sdk2/model/RegionOut.class -com/namsor/sdk2/api/ChineseApi$5.class -com/namsor/sdk2/api/PersonalApi$39.class -com/namsor/sdk2/api/PersonalApi$7.class -com/namsor/sdk2/api/PersonalApi$45.class -com/namsor/sdk2/api/PersonalApi$75.class -com/namsor/sdk2/api/AdminApi$27.class -com/namsor/sdk2/api/PersonalApi$16.class -com/namsor/sdk2/api/PersonalApi$98.class -com/namsor/sdk2/api/JapaneseApi$74.class -com/namsor/sdk2/api/GeneralApi$16.class -com/namsor/sdk2/api/JapaneseApi$3.class -com/namsor/sdk2/api/PersonalApi$151.class -com/namsor/sdk2/model/BatchNameGeoIn.class -com/namsor/sdk2/invoke/auth/RetryingOAuth$1.class -com/namsor/sdk2/model/PersonalNameParsedOut$NameParserTypeEnum$Adapter.class -com/namsor/sdk2/api/JapaneseApi$21.class -com/namsor/sdk2/api/PersonalApi$51.class -com/namsor/sdk2/model/BatchPersonalNameParsedOut.class -com/namsor/sdk2/api/IndianApi$34.class -com/namsor/sdk2/api/GeneralApi$20.class -com/namsor/sdk2/api/IndianApi$10.class -com/namsor/sdk2/api/PersonalApi$100.class -com/namsor/sdk2/api/PersonalApi$69.class -com/namsor/sdk2/api/ChineseApi$42.class -com/namsor/sdk2/api/ChineseApi$37.class -com/namsor/sdk2/api/JapaneseApi$16.class -com/namsor/sdk2/api/PersonalApi$74.class -com/namsor/sdk2/api/SocialApi$2.class -com/namsor/sdk2/api/GeneralApi$8.class -com/namsor/sdk2/model/BatchPersonalNameReligionedOut.class -com/namsor/sdk2/api/IndianApi$1.class -com/namsor/sdk2/api/PersonalApi$118.class -com/namsor/sdk2/api/JapaneseApi$9.class -com/namsor/sdk2/api/ChineseApi$63.class -com/namsor/sdk2/api/PersonalApi$47.class -com/namsor/sdk2/api/PersonalApi$67.class -com/namsor/sdk2/api/IndianApi$9.class -com/namsor/sdk2/api/ChineseApi$10.class -com/namsor/sdk2/api/GeneralApi$18.class -com/namsor/sdk2/api/SocialApi$15.class -com/namsor/sdk2/api/ChineseApi$43.class -com/namsor/sdk2/api/JapaneseApi$55.class -com/namsor/sdk2/model/FirstLastNameGenderIn.class -com/namsor/sdk2/api/SocialApi$9.class -com/namsor/sdk2/api/AdminApi$21.class -com/namsor/sdk2/model/BatchFirstLastNameGeoIn.class -com/namsor/sdk2/api/IndianApi$11.class -com/namsor/sdk2/api/JapaneseApi$62.class -com/namsor/sdk2/api/IndianApi$31.class -com/namsor/sdk2/model/APIUsageHistoryOut.class -com/namsor/sdk2/api/SocialApi$22.class -com/namsor/sdk2/api/ChineseApi$56.class -com/namsor/sdk2/api/AdminApi$19.class -com/namsor/sdk2/model/CorridorIn.class -com/namsor/sdk2/api/AdminApi$26.class -com/namsor/sdk2/api/PersonalApi$61.class -com/namsor/sdk2/api/IndianApi$3.class -com/namsor/sdk2/api/PersonalApi$116.class -com/namsor/sdk2/api/JapaneseApi$15.class -com/namsor/sdk2/api/PersonalApi$21.class -com/namsor/sdk2/api/IndianApi$24.class -com/namsor/sdk2/api/PersonalApi$110.class -com/namsor/sdk2/api/PersonalApi$148.class -com/namsor/sdk2/api/JapaneseApi$4.class -com/namsor/sdk2/api/PersonalApi$108.class -com/namsor/sdk2/model/ProperNounCategorizedOut.class -com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.class -com/namsor/sdk2/api/JapaneseApi$70.class -com/namsor/sdk2/api/PersonalApi$109.class -com/namsor/sdk2/invoke/JSON$ByteArrayAdapter.class -com/namsor/sdk2/api/JapaneseApi$47.class -com/namsor/sdk2/model/BatchNameMatchCandidatesOut.class -com/namsor/sdk2/api/PersonalApi$55.class -com/namsor/sdk2/api/PersonalApi$155.class -com/namsor/sdk2/api/AdminApi$13.class -com/namsor/sdk2/api/PersonalApi$102.class -com/namsor/sdk2/api/ChineseApi$51.class -com/namsor/sdk2/invoke/ProgressResponseBody$ProgressListener.class -com/namsor/sdk2/api/PersonalApi$15.class -com/namsor/sdk2/model/FirstLastNameGeoIn.class -com/namsor/sdk2/api/SocialApi$14.class -com/namsor/sdk2/api/SocialApi$4.class -com/namsor/sdk2/api/JapaneseApi.class -com/namsor/sdk2/api/PersonalApi$149.class -com/namsor/sdk2/api/JapaneseApi$54.class -com/namsor/sdk2/api/ChineseApi$11.class -com/namsor/sdk2/api/JapaneseApi$14.class -com/namsor/sdk2/api/PersonalApi$48.class -com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.class -com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum$Adapter.class -com/namsor/sdk2/invoke/ApiCallback.class -com/namsor/sdk2/api/ChineseApi.class -com/namsor/sdk2/api/ChineseApi$2.class -com/namsor/sdk2/api/PersonalApi$66.class -com/namsor/sdk2/api/PersonalApi$103.class -com/namsor/sdk2/api/JapaneseApi$48.class -com/namsor/sdk2/api/AdminApi$14.class -com/namsor/sdk2/api/ChineseApi$1.class -com/namsor/sdk2/api/GeneralApi$19.class -com/namsor/sdk2/model/BatchNameMatchedOut.class -com/namsor/sdk2/api/IndianApi$30.class -com/namsor/sdk2/model/BatchPersonalNameGeoSubclassificationOut.class -com/namsor/sdk2/api/ChineseApi$57.class -com/namsor/sdk2/api/PersonalApi$54.class -com/namsor/sdk2/model/PersonalNameGeoSubdivisionIn.class -com/namsor/sdk2/api/ChineseApi$50.class -com/namsor/sdk2/api/PersonalApi$115.class -com/namsor/sdk2/api/IndianApi$4.class -com/namsor/sdk2/api/IndianApi$25.class -com/namsor/sdk2/api/ChineseApi$62.class -com/namsor/sdk2/api/PersonalApi$14.class -com/namsor/sdk2/invoke/StringUtil.class -com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.class -com/namsor/sdk2/api/AdminApi$15.class -com/namsor/sdk2/api/PersonalApi$60.class -com/namsor/sdk2/api/PersonalApi$70.class -com/namsor/sdk2/model/PersonalNameSubdivisionIn.class -com/namsor/sdk2/api/IndianApi$18.class -com/namsor/sdk2/api/JapaneseApi$49.class -com/namsor/sdk2/api/JapaneseApi$59.class -com/namsor/sdk2/api/SocialApi$19.class -com/namsor/sdk2/api/IndianApi$5.class -com/namsor/sdk2/api/PersonalApi$10.class -com/namsor/sdk2/api/PersonalApi$107.class -com/namsor/sdk2/api/PersonalApi$114.class -com/namsor/sdk2/api/PersonalApi$104.class -com/namsor/sdk2/model/APIServicesOut.class -com/namsor/sdk2/api/PersonalApi$13.class -com/namsor/sdk2/api/PersonalApi$63.class -com/namsor/sdk2/model/BatchPersonalNameGeoOut.class -com/namsor/sdk2/api/GeneralApi.class -com/namsor/sdk2/api/PersonalApi$56.class -com/namsor/sdk2/api/JapaneseApi$11.class -com/namsor/sdk2/api/AdminApi$18.class -com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.class -com/namsor/sdk2/api/IndianApi$20.class -com/namsor/sdk2/api/SocialApi$23.class -com/namsor/sdk2/api/PersonalApi$59.class -com/namsor/sdk2/api/ChineseApi$47.class -com/namsor/sdk2/api/IndianApi$15.class -com/namsor/sdk2/model/APIKeyOut.class -com/namsor/sdk2/api/AdminApi$20.class -com/namsor/sdk2/api/ChineseApi$55.class -com/namsor/sdk2/api/ChineseApi$52.class -com/namsor/sdk2/api/JapaneseApi$63.class -com/namsor/sdk2/api/SocialApi$20.class -com/namsor/sdk2/api/JapaneseApi$57.class -com/namsor/sdk2/api/PersonalApi$112.class -com/namsor/sdk2/api/JapaneseApi$60.class -com/namsor/sdk2/model/FactIn.class -com/namsor/sdk2/api/PersonalApi$12.class -com/namsor/sdk2/api/IndianApi$23.class -com/namsor/sdk2/api/AdminApi$23.class -com/namsor/sdk2/api/IndianApi$7.class -com/namsor/sdk2/api/SocialApi$7.class -com/namsor/sdk2/invoke/JSON$1.class -com/namsor/sdk2/api/ChineseApi$48.class -com/namsor/sdk2/api/AdminApi$17.class -com/namsor/sdk2/model/PersonalNameGeoOut.class -com/namsor/sdk2/api/IndianApi$16.class -com/namsor/sdk2/invoke/ProgressRequestBody.class -com/namsor/sdk2/api/JapaneseApi$8.class -com/namsor/sdk2/api/PersonalApi$58.class -com/namsor/sdk2/api/SocialApi$17.class -com/namsor/sdk2/api/IndianApi$8.class -com/namsor/sdk2/api/ChineseApi$54.class -com/namsor/sdk2/api/JapaneseApi$56.class -com/namsor/sdk2/api/AdminApi$16.class -com/namsor/sdk2/api/SocialApi$16.class -com/namsor/sdk2/api/ChineseApi$49.class -com/namsor/sdk2/api/PersonalApi$111.class -com/namsor/sdk2/api/SocialApi$21.class -com/namsor/sdk2/api/SocialApi$8.class -com/namsor/sdk2/api/JapaneseApi$61.class -com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.class -com/namsor/sdk2/api/PersonalApi$11.class -com/namsor/sdk2/api/PersonalApi$106.class -com/namsor/sdk2/api/AdminApi$22.class -com/namsor/sdk2/api/IndianApi$17.class -com/namsor/sdk2/api/JapaneseApi$10.class -com/namsor/sdk2/api/PersonalApi$62.class -com/namsor/sdk2/invoke/auth/HttpBasicAuth.class -com/namsor/sdk2/model/RegionISO.class -com/namsor/sdk2/invoke/JSON$LocalDateTypeAdapter.class -com/namsor/sdk2/api/SocialApi.class -com/namsor/sdk2/api/IndianApi$22.class -com/namsor/sdk2/model/ReligionStatOut.class -com/namsor/sdk2/api/PersonalApi$57.class -com/namsor/sdk2/api/ChineseApi$20.class -com/namsor/sdk2/api/JapaneseApi$12.class -com/namsor/sdk2/api/JapaneseApi$52.class -com/namsor/sdk2/api/JapaneseApi$65.class -com/namsor/sdk2/api/ChineseApi$33.class -com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.class -com/namsor/sdk2/api/SocialApi$25.class -com/namsor/sdk2/api/AdminApi$31.class -com/namsor/sdk2/api/ChineseApi$4.class -com/namsor/sdk2/api/GeneralApi$2.class -com/namsor/sdk2/api/ChineseApi$46.class -com/namsor/sdk2/api/SocialApi$12.class -com/namsor/sdk2/api/AdminApi$49.class -com/namsor/sdk2/api/SocialApi$1.class -com/namsor/sdk2/model/PersonalNameCastegroupOut.class -com/namsor/sdk2/api/SocialApi$6.class -com/namsor/sdk2/api/AdminApi$44.class -com/namsor/sdk2/api/IndianApi$19.class -com/namsor/sdk2/api/JapaneseApi$38.class -com/namsor/sdk2/api/ChineseApi$59.class -com/namsor/sdk2/model/NameMatchedOut.class -com/namsor/sdk2/api/PersonalApi$92.class -com/namsor/sdk2/api/PersonalApi$44.class -com/namsor/sdk2/api/PersonalApi$125.class -com/namsor/sdk2/api/GeneralApi$10.class -com/namsor/sdk2/api/ChineseApi$60.class -com/namsor/sdk2/api/PersonalApi$84.class -com/namsor/sdk2/api/IndianApi$27.class -com/namsor/sdk2/api/PersonalApi$133.class -com/namsor/sdk2/api/PersonalApi$65.class -com/namsor/sdk2/api/PersonalApi$49.class -com/namsor/sdk2/invoke/auth/RetryingOAuth.class -com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.class -com/namsor/sdk2/api/JapaneseApi$7.class -com/namsor/sdk2/api/ChineseApi$9.class -com/namsor/sdk2/model/PersonalNameParsedOut$NameParserTypeEnum.class -com/namsor/sdk2/api/PersonalApi$3.class -com/namsor/sdk2/api/PersonalApi$25.class -com/namsor/sdk2/invoke/Configuration.class -com/namsor/sdk2/api/AdminApi$36.class -com/namsor/sdk2/model/APIUsageAggregatedOut.class -com/namsor/sdk2/api/PersonalApi$78.class -com/namsor/sdk2/model/BatchFirstLastNameGenderIn.class -com/namsor/sdk2/api/PersonalApi$71.class -com/namsor/sdk2/api/IndianApi$14.class -com/namsor/sdk2/api/PersonalApi$31.class -com/namsor/sdk2/api/JapaneseApi$25.class -com/namsor/sdk2/invoke/auth/ApiKeyAuth.class -com/namsor/sdk2/api/PersonalApi$89.class -com/namsor/sdk2/api/PersonalApi$120.class -com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum$Adapter.class -com/namsor/sdk2/api/AdminApi$25.class -com/namsor/sdk2/api/PersonalApi$138.class -com/namsor/sdk2/api/PersonalApi$5.class -com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum.class -com/namsor/sdk2/api/JapaneseApi$19.class -com/namsor/sdk2/api/AdminApi$6.class -com/namsor/sdk2/api/PersonalApi$50.class -com/namsor/sdk2/api/IndianApi$2.class -com/namsor/sdk2/api/GeneralApi$9.class -com/namsor/sdk2/api/JapaneseApi$2.class -com/namsor/sdk2/model/PersonalNameParsedOut$NameParserTypeAltEnum.class -com/namsor/sdk2/api/PersonalApi$8.class -com/namsor/sdk2/model/APIServiceOut.class -com/namsor/sdk2/api/PersonalApi$154.class -com/namsor/sdk2/api/PersonalApi$144.class -com/namsor/sdk2/api/PersonalApi$20.class -com/namsor/sdk2/api/PersonalApi$117.class -com/namsor/sdk2/api/JapaneseApi$5.class -com/namsor/sdk2/api/PersonalApi$23.class -com/namsor/sdk2/api/PersonalApi$73.class -com/namsor/sdk2/model/FirstLastNameGenderedOut$LikelyGenderEnum$Adapter.class -com/namsor/sdk2/api/PersonalApi$76.class -com/namsor/sdk2/api/PersonalApi$38.class -com/namsor/sdk2/api/ChineseApi$44.class -com/namsor/sdk2/invoke/auth/OAuth.class -com/namsor/sdk2/invoke/ProgressResponseBody.class -com/namsor/sdk2/api/JapaneseApi$46.class -com/namsor/sdk2/api/JapaneseApi$71.class -com/namsor/sdk2/api/PersonalApi$101.class -com/namsor/sdk2/api/ChineseApi$12.class -com/namsor/sdk2/api/AdminApi$12.class -com/namsor/sdk2/api/PersonalApi$99.class -com/namsor/sdk2/api/JapaneseApi$20.class -com/namsor/sdk2/api/GeneralApi$17.class -com/namsor/sdk2/api/ChineseApi$67.class -com/namsor/sdk2/api/IndianApi$35.class -com/namsor/sdk2/api/AdminApi$55.class -com/namsor/sdk2/api/ChineseApi$6.class -com/namsor/sdk2/api/IndianApi$12.class -com/namsor/sdk2/model/PersonalNameParsedOut.class -com/namsor/sdk2/api/JapaneseApi$23.class -com/namsor/sdk2/api/PersonalApi$122.class -com/namsor/sdk2/api/SocialApi$10.class -com/namsor/sdk2/api/JapaneseApi$50.class -com/namsor/sdk2/api/IndianApi$33.class -com/namsor/sdk2/api/PersonalApi$119.class -com/namsor/sdk2/api/PersonalApi$52.class -com/namsor/sdk2/api/AdminApi$8.class -com/namsor/sdk2/api/PersonalApi$152.class -com/namsor/sdk2/api/AdminApi$33.class -com/namsor/sdk2/api/ChineseApi$38.class -com/namsor/sdk2/api/SocialApi$3.class -com/namsor/sdk2/api/ChineseApi$41.class -com/namsor/sdk2/api/GeneralApi$7.class -com/namsor/sdk2/api/JapaneseApi$44.class -com/namsor/sdk2/api/JapaneseApi$17.class -com/namsor/sdk2/api/PersonalApi$68.class -com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum.class -com/namsor/sdk2/model/BatchFirstLastNameIn.class -com/namsor/sdk2/api/JapaneseApi$67.class -com/namsor/sdk2/api/AdminApi$34.class -com/namsor/sdk2/model/NameMatchedOut$MatchStatusEnum$Adapter.class -com/namsor/sdk2/invoke/ProgressResponseBody$1.class -com/namsor/sdk2/api/IndianApi$29.class -com/namsor/sdk2/api/ChineseApi$14.class -com/namsor/sdk2/model/BatchMatchPersonalFirstLastNameIn.class -com/namsor/sdk2/api/PersonalApi$146.class -com/namsor/sdk2/api/PersonalApi$46.class -com/namsor/sdk2/model/PersonalNameGenderedOut$LikelyGenderEnum.class -com/namsor/sdk2/model/PersonalNameGeoSubclassificationOut.class -com/namsor/sdk2/api/JapaneseApi$73.class -com/namsor/sdk2/api/ChineseApi$70.class -com/namsor/sdk2/invoke/JSON$OffsetDateTimeTypeAdapter.class -com/namsor/sdk2/api/AdminApi$28.class -com/namsor/sdk2/api/GeneralApi$15.class -com/namsor/sdk2/api/ChineseApi$65.class -com/namsor/sdk2/api/JapaneseApi$68.class -com/namsor/sdk2/api/PersonalApi$17.class -com/namsor/sdk2/api/AdminApi$10.class -com/namsor/sdk2/api/PersonalApi$97.class -com/namsor/sdk2/api/PersonalApi$123.class -com/namsor/sdk2/api/JapaneseApi$22.class -com/namsor/sdk2/model/BatchPersonalNameGeoIn.class -com/namsor/sdk2/api/ChineseApi$7.class -com/namsor/sdk2/api/JapaneseApi$42.class -com/namsor/sdk2/api/PersonalApi$150.class -com/namsor/sdk2/invoke/Pair.class -com/namsor/sdk2/api/ChineseApi$30.class -com/namsor/sdk2/api/ChineseApi$23.class -com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.class -com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityEnum.class -com/namsor/sdk2/model/APIClassifiersStatusOut.class -com/namsor/sdk2/api/JapaneseApi$75.class -com/namsor/sdk2/api/JapaneseApi$35.class -com/namsor/sdk2/invoke/JSON$DateTypeAdapter.class -com/namsor/sdk2/api/AdminApi$41.class -com/namsor/sdk2/model/APIClassifierOut.class -com/namsor/sdk2/api/ChineseApi$36.class -com/namsor/sdk2/api/ChineseApi$16.class -com/namsor/sdk2/api/AdminApi$39.class -com/namsor/sdk2/api/PersonalApi$41.class -com/namsor/sdk2/model/FirstLastNameGenderedOut.class -com/namsor/sdk2/api/PersonalApi$81.class -com/namsor/sdk2/api/PersonalApi$136.class -com/namsor/sdk2/invoke/GzipRequestInterceptor$1.class -com/namsor/sdk2/model/BatchCorridorOut.class -com/namsor/sdk2/api/AdminApi$47.class -com/namsor/sdk2/invoke/auth/OAuthFlow.class -com/namsor/sdk2/api/PersonalApi$87.class -com/namsor/sdk2/api/PersonalApi$130.class -com/namsor/sdk2/api/PersonalApi$6.class -com/namsor/sdk2/api/PersonalApi$27.class -com/namsor/sdk2/invoke/JSON.class -com/namsor/sdk2/api/PersonalApi$128.class -com/namsor/sdk2/api/PersonalApi$95.class -com/namsor/sdk2/api/GeneralApi$13.class -com/namsor/sdk2/api/ChineseApi$35.class -com/namsor/sdk2/api/AdminApi$53.class -com/namsor/sdk2/api/PersonalApi$142.class -com/namsor/sdk2/api/PersonalApi$19.class -com/namsor/sdk2/api/GeneralApi$4.class -com/namsor/sdk2/api/PersonalApi$42.class -com/namsor/sdk2/api/JapaneseApi$30.class -com/namsor/sdk2/api/ChineseApi$68.class -com/namsor/sdk2/invoke/GzipRequestInterceptor$2.class -com/namsor/sdk2/api/AdminApi$4.class -com/namsor/sdk2/api/PersonalApi$88.class -com/namsor/sdk2/api/ChineseApi$29.class -com/namsor/sdk2/model/APIPeriodUsageOut.class -com/namsor/sdk2/api/IndianApi$36.class -com/namsor/sdk2/model/NameMatchCandidatesOut.class -com/namsor/sdk2/api/JapaneseApi$41.class -com/namsor/sdk2/api/AdminApi$54.class -com/namsor/sdk2/api/PersonalApi$94.class -com/namsor/sdk2/api/ChineseApi$69.class -com/namsor/sdk2/api/JapaneseApi$36.class -com/namsor/sdk2/api/AdminApi$5.class -com/namsor/sdk2/api/ChineseApi$8.class -com/namsor/sdk2/model/PersonalNameIn.class -com/namsor/sdk2/api/PersonalApi$26.class -com/namsor/sdk2/api/AdminApi$42.class -com/namsor/sdk2/api/PersonalApi$131.class -com/namsor/sdk2/api/ChineseApi$28.class -com/namsor/sdk2/api/GeneralApi$5.class -com/namsor/sdk2/api/ChineseApi$22.class -com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut$RaceEthnicityAltEnum$Adapter.class -com/namsor/sdk2/api/PersonalApi$82.class -com/namsor/sdk2/api/AdminApi.class -com/namsor/sdk2/api/GeneralApi$12.class -com/namsor/sdk2/api/IndianApi$37.class -com/namsor/sdk2/api/PersonalApi$143.class -com/namsor/sdk2/model/FirstLastNameDiasporaedOut.class -com/namsor/sdk2/invoke/ApiClient$1.class -com/namsor/sdk2/api/IndianApi$38.class -com/namsor/sdk2/model/BatchPersonalNameCastegroupOut.class -com/namsor/sdk2/api/JapaneseApi$29.class -com/namsor/sdk2/api/PersonalApi$137.class -com/namsor/sdk2/api/PersonalApi$90.class -com/namsor/sdk2/model/MatchPersonalFirstLastNameIn.class -com/namsor/sdk2/api/PersonalApi$40.class -com/namsor/sdk2/api/PersonalApi$127.class -com/namsor/sdk2/model/FirstLastNameGeoSubclassificationOut.class -com/namsor/sdk2/api/ChineseApi$17.class -com/namsor/sdk2/model/CorridorOut.class -com/namsor/sdk2/model/NameIn.class -com/namsor/sdk2/api/AdminApi$3.class -com/namsor/sdk2/api/PersonalApi$2.class -com/namsor/sdk2/api/PersonalApi$33.class -com/namsor/sdk2/model/BatchCorridorIn.class -com/namsor/sdk2/api/PersonalApi$134.class -com/namsor/sdk2/api/GeneralApi$11.class -com/namsor/sdk2/api/PersonalApi$93.class -com/namsor/sdk2/api/PersonalApi$83.class -com/namsor/sdk2/api/PersonalApi$141.class -com/namsor/sdk2/api/ChineseApi$24.class -com/namsor/sdk2/api/PersonalApi$36.class -com/namsor/sdk2/api/AdminApi$52.class -com/namsor/sdk2/api/JapaneseApi$31.class -com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.class -com/namsor/sdk2/api/PersonalApi$79.class -com/namsor/sdk2/api/ChineseApi$32.class -com/namsor/sdk2/invoke/GzipRequestInterceptor.class -com/namsor/sdk2/api/AdminApi$38.class -com/namsor/sdk2/api/JapaneseApi$26.class -com/namsor/sdk2/api/ChineseApi$27.class -com/namsor/sdk2/model/FirstLastNameOut.class -com/namsor/sdk2/api/GeneralApi$3.class -com/namsor/sdk2/model/BatchNameIn.class -com/namsor/sdk2/model/APIBillingPeriodUsageOut.class -com/namsor/sdk2/api/ChineseApi$25.class -com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.class -com/namsor/sdk2/model/PersonalNameParsedOut$NameParserTypeAltEnum$Adapter.class -com/namsor/sdk2/api/PersonalApi$129.class -com/namsor/sdk2/api/PersonalApi$29.class -com/namsor/sdk2/api/AdminApi$1.class -com/namsor/sdk2/model/PersonalNameGenderedOut.class -com/namsor/sdk2/api/PersonalApi$85.class -com/namsor/sdk2/api/PersonalApi$35.class -com/namsor/sdk2/api/AdminApi$46.class -com/namsor/sdk2/api/ChineseApi$19.class -com/namsor/sdk2/api/JapaneseApi$34.class -com/namsor/sdk2/api/JapaneseApi$27.class -com/namsor/sdk2/api/ChineseApi$31.class -com/namsor/sdk2/api/PersonalApi$28.class -com/namsor/sdk2/api/PersonalApi$86.class -com/namsor/sdk2/api/JapaneseApi$28.class -com/namsor/sdk2/api/PersonalApi$91.class -com/namsor/sdk2/api/AdminApi$50.class -com/namsor/sdk2/api/GeneralApi$1.class -com/namsor/sdk2/api/PersonalApi$135.class -com/namsor/sdk2/api/PersonalApi$34.class -com/namsor/sdk2/api/AdminApi$45.class -com/namsor/sdk2/invoke/auth/Authentication.class -com/namsor/sdk2/api/PersonalApi$1.class -com/namsor/sdk2/invoke/ApiClient$3.class -com/namsor/sdk2/api/AdminApi$2.class -com/namsor/sdk2/api/JapaneseApi$33.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index 7e1763f2..00000000 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,105 +0,0 @@ -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameSubdivisionIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/OAuth.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameSubdivisionIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/ProperNounCategorizedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/JSON.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/CorridorIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameGeoSubdivisionIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/HttpBasicAuth.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/StringUtil.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/ProgressResponseBody.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/ApiClient.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/IndianApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/ApiResponse.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/ReligionStatOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIServicesOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchMatchPersonalFirstLastNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIServiceOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/ApiKeyAuth.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/ChineseApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameGenderIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/NameMatchedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameGeoOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/RegionOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIPlanSubscriptionOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/PersonalApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/ApiException.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameReligionedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIClassifiersStatusOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameCastegroupOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIKeyOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIUsageAggregatedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/RetryingOAuth.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameGeoSubclassificationOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/Pair.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameParsedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/RegionISO.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameGenderedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/NameMatchCandidatesOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/GzipRequestInterceptor.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIPeriodUsageOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FeedbackLoopOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameGeoSubclassificationOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FactIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/Authentication.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/JapaneseApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameGeoSubclassificationOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/Configuration.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/ApiCallback.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/NameGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIClassifierOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIClassifierTaxonomyOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/AdminApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameGeoSubclassificationOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameGeoSubdivisionIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/ProgressRequestBody.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/NameMatchCandidateOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/GeneralApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchPersonalNameParsedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameOriginedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIBillingPeriodUsageOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/CorridorOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/MatchPersonalFirstLastNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APICounterV2Out.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchNameGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameCastegroupOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/NameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchCorridorOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameReligionedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchCorridorIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameGeoOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchNameMatchedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/api/SocialApi.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/invoke/auth/OAuthFlow.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/PersonalNameGeoIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchProperNounCategorizedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchFirstLastNameIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameGenderedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/SoftwareVersionOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/APIUsageHistoryOut.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/main/java/com/namsor/sdk2/model/FirstLastNameGeoIn.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst deleted file mode 100644 index bcd79a98..00000000 --- a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +++ /dev/null @@ -1,87 +0,0 @@ -com/namsor/sdk2/model/BatchCorridorInTest.class -com/namsor/sdk2/model/BatchFirstLastNameInTest.class -com/namsor/sdk2/model/BatchFirstLastNameGenderedOutTest.class -com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoInTest.class -com/namsor/sdk2/model/APIClassifierTaxonomyOutTest.class -com/namsor/sdk2/model/BatchNameMatchCandidatesOutTest.class -com/namsor/sdk2/model/APICounterV2OutTest.class -com/namsor/sdk2/model/BatchPersonalNameCastegroupOutTest.class -com/namsor/sdk2/model/APIBillingPeriodUsageOutTest.class -com/namsor/sdk2/model/FirstLastNameOriginedOutTest.class -com/namsor/sdk2/model/FirstLastNamePhoneCodedOutTest.class -com/namsor/sdk2/model/BatchMatchPersonalFirstLastNameInTest.class -com/namsor/sdk2/model/FirstLastNameGeoSubclassificationOutTest.class -com/namsor/sdk2/model/PersonalNameSubdivisionInTest.class -com/namsor/sdk2/api/PersonalApiTest.class -com/namsor/sdk2/model/FirstLastNameGeoInTest.class -com/namsor/sdk2/api/AdminApiTest.class -com/namsor/sdk2/api/GeneralApiTest.class -com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoInTest.class -com/namsor/sdk2/model/FeedbackLoopOutTest.class -com/namsor/sdk2/model/ProperNounCategorizedOutTest.class -com/namsor/sdk2/model/APIServicesOutTest.class -com/namsor/sdk2/model/FirstLastNameGeoZippedInTest.class -com/namsor/sdk2/model/PersonalNameReligionedOutTest.class -com/namsor/sdk2/model/BatchPersonalNameGenderedOutTest.class -com/namsor/sdk2/model/PersonalNameGeoSubclassificationOutTest.class -com/namsor/sdk2/model/FirstLastNameOutTest.class -com/namsor/sdk2/model/ReligionStatOutTest.class -com/namsor/sdk2/model/FirstLastNamePhoneNumberInTest.class -com/namsor/sdk2/model/BatchFirstLastNameGeoInTest.class -com/namsor/sdk2/model/RegionISOTest.class -com/namsor/sdk2/model/FirstLastNameGenderInTest.class -com/namsor/sdk2/model/BatchPersonalNameInTest.class -com/namsor/sdk2/model/BatchFirstLastNameGeoZippedInTest.class -com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOutTest.class -com/namsor/sdk2/model/APIServiceOutTest.class -com/namsor/sdk2/model/BatchProperNounCategorizedOutTest.class -com/namsor/sdk2/model/APIPlanSubscriptionOutTest.class -com/namsor/sdk2/model/NameInTest.class -com/namsor/sdk2/model/PersonalNameInTest.class -com/namsor/sdk2/model/FirstLastNameInTest.class -com/namsor/sdk2/model/BatchPersonalNameParsedOutTest.class -com/namsor/sdk2/model/BatchPersonalNameReligionedOutTest.class -com/namsor/sdk2/api/JapaneseApiTest.class -com/namsor/sdk2/model/BatchNameGeoInTest.class -com/namsor/sdk2/model/FactInTest.class -com/namsor/sdk2/model/MatchPersonalFirstLastNameInTest.class -com/namsor/sdk2/model/BatchCorridorOutTest.class -com/namsor/sdk2/model/APIClassifiersStatusOutTest.class -com/namsor/sdk2/model/CorridorInTest.class -com/namsor/sdk2/model/BatchFirstLastNameOriginedOutTest.class -com/namsor/sdk2/model/PersonalNameCastegroupOutTest.class -com/namsor/sdk2/model/BatchPersonalNameSubdivisionInTest.class -com/namsor/sdk2/model/BatchPersonalNameGeoSubclassificationOutTest.class -com/namsor/sdk2/model/BatchNameInTest.class -com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOutTest.class -com/namsor/sdk2/model/NameGeoInTest.class -com/namsor/sdk2/api/IndianApiTest.class -com/namsor/sdk2/model/PersonalNameGeoInTest.class -com/namsor/sdk2/model/APIClassifierOutTest.class -com/namsor/sdk2/model/BatchFirstLastNameGeoSubclassificationOutTest.class -com/namsor/sdk2/model/PersonalNameGeoOutTest.class -com/namsor/sdk2/model/FirstLastNameDiasporaedOutTest.class -com/namsor/sdk2/model/BatchPersonalNameGeoSubdivisionInTest.class -com/namsor/sdk2/model/BatchPersonalNameGeoOutTest.class -com/namsor/sdk2/model/NameMatchCandidateOutTest.class -com/namsor/sdk2/model/PersonalNameGeoSubdivisionInTest.class -com/namsor/sdk2/model/APIUsageHistoryOutTest.class -com/namsor/sdk2/model/APIKeyOutTest.class -com/namsor/sdk2/api/SocialApiTest.class -com/namsor/sdk2/model/RegionOutTest.class -com/namsor/sdk2/api/ChineseApiTest.class -com/namsor/sdk2/model/NameMatchCandidatesOutTest.class -com/namsor/sdk2/model/FirstLastNameGenderedOutTest.class -com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOutTest.class -com/namsor/sdk2/model/BatchFirstLastNameGenderInTest.class -com/namsor/sdk2/model/NameMatchedOutTest.class -com/namsor/sdk2/model/PersonalNameParsedOutTest.class -com/namsor/sdk2/model/APIPeriodUsageOutTest.class -com/namsor/sdk2/model/APIUsageAggregatedOutTest.class -com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberInTest.class -com/namsor/sdk2/model/PersonalNameGenderedOutTest.class -com/namsor/sdk2/model/BatchNameMatchedOutTest.class -com/namsor/sdk2/model/SoftwareVersionOutTest.class -com/namsor/sdk2/model/BatchPersonalNameGeoInTest.class -com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOutTest.class -com/namsor/sdk2/model/CorridorOutTest.class diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index 749640df..00000000 --- a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ /dev/null @@ -1,87 +0,0 @@ -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIClassifierTaxonomyOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/CorridorInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameGeoSubclassificationOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/SoftwareVersionOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameGeoZippedInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIServiceOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/NameMatchCandidateOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/RegionOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameGeoOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameParsedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameParsedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIPlanSubscriptionOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameGeoOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchProperNounCategorizedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/CorridorOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameGenderInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNamePhoneCodedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIServicesOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/JapaneseApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/NameMatchedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameGeoSubdivisionInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/PersonalApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIClassifiersStatusOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameGeoSubclassificationOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameReligionedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/NameGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchCorridorOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchNameGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIBillingPeriodUsageOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIPeriodUsageOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/ChineseApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchNameMatchedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameReligionedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchCorridorInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameGenderedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIUsageAggregatedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameGeoSubdivisionInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameGenderedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameGenderedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIClassifierOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchNameMatchCandidatesOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/ReligionStatOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameGeoSubclassificationOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APICounterV2OutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameOriginedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameOriginedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIUsageHistoryOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameGenderedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/ProperNounCategorizedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/IndianApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchMatchPersonalFirstLastNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameGeoSubclassificationOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/RegionISOTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchFirstLastNameGenderInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/MatchPersonalFirstLastNameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/APIKeyOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/NameInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FeedbackLoopOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/GeneralApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameSubdivisionInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNamePhoneNumberInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameSubdivisionInTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/AdminApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameDiasporaedOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/api/SocialApiTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/PersonalNameCastegroupOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FirstLastNameOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/NameMatchCandidatesOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/BatchPersonalNameCastegroupOutTest.java -/home/namsor/codegen/openapi-generator/namsor/client/java/src/test/java/com/namsor/sdk2/model/FactInTest.java diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.api.AdminApiTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.api.AdminApiTest.xml deleted file mode 100644 index 42a660df..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.api.AdminApiTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.api.ChineseApiTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.api.ChineseApiTest.xml deleted file mode 100644 index 3a2480e3..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.api.ChineseApiTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.api.PersonalApiTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.api.PersonalApiTest.xml deleted file mode 100644 index 5ce281d4..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.api.PersonalApiTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.api.SocialApiTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.api.SocialApiTest.xml deleted file mode 100644 index edacfd60..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.api.SocialApiTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIBillingPeriodUsageOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIBillingPeriodUsageOutTest.xml deleted file mode 100644 index 94787ead..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIBillingPeriodUsageOutTest.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APICounterV2OutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APICounterV2OutTest.xml deleted file mode 100644 index 06a3d6a6..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APICounterV2OutTest.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIKeyOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIKeyOutTest.xml deleted file mode 100644 index 2532a57c..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIKeyOutTest.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIPeriodUsageOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIPeriodUsageOutTest.xml deleted file mode 100644 index 7cb2a408..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIPeriodUsageOutTest.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIPlanSubscriptionOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIPlanSubscriptionOutTest.xml deleted file mode 100644 index 9b3890f5..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIPlanSubscriptionOutTest.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIServiceOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIServiceOutTest.xml deleted file mode 100644 index 90c28d4b..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIServiceOutTest.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIServicesOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIServicesOutTest.xml deleted file mode 100644 index 4e2ced57..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIServicesOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIUsageAggregatedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.APIUsageAggregatedOutTest.xml deleted file mode 100644 index 441dacad..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.APIUsageAggregatedOutTest.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest.xml deleted file mode 100644 index a1f0396c..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGenderInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGenderInTest.xml deleted file mode 100644 index 02236130..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGenderInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest.xml deleted file mode 100644 index e256bfee..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGeoInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGeoInTest.xml deleted file mode 100644 index 68faa5a0..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGeoInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest.xml deleted file mode 100644 index b408e343..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameInTest.xml deleted file mode 100644 index ce22b124..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest.xml deleted file mode 100644 index 4cd8fa76..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest.xml deleted file mode 100644 index 163094f0..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest.xml deleted file mode 100644 index b7e098b6..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest.xml deleted file mode 100644 index 3f8ffca3..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest.xml deleted file mode 100644 index 799f9b3e..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest.xml deleted file mode 100644 index 1deed2ff..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest.xml deleted file mode 100644 index d1a763a0..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGeoInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGeoInTest.xml deleted file mode 100644 index 1276fa71..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGeoInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGeoOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGeoOutTest.xml deleted file mode 100644 index 2e432f82..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameGeoOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameInTest.xml deleted file mode 100644 index 8ca162e4..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameParsedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameParsedOutTest.xml deleted file mode 100644 index 5afc7c6e..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.BatchPersonalNameParsedOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FeedbackLoopOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FeedbackLoopOutTest.xml deleted file mode 100644 index fc40587a..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FeedbackLoopOutTest.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest.xml deleted file mode 100644 index 68a3652a..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGenderInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGenderInTest.xml deleted file mode 100644 index 734140e9..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGenderInTest.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGenderedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGenderedOutTest.xml deleted file mode 100644 index 87c58d18..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGenderedOutTest.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGeoInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGeoInTest.xml deleted file mode 100644 index 60cebe3e..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGeoInTest.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGeoZippedInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGeoZippedInTest.xml deleted file mode 100644 index 50d1ab53..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameGeoZippedInTest.xml +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameInTest.xml deleted file mode 100644 index df892e70..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameInTest.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameOriginedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameOriginedOutTest.xml deleted file mode 100644 index e382db4b..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameOriginedOutTest.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameOutTest.xml deleted file mode 100644 index 7eb4297f..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameOutTest.xml +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest.xml deleted file mode 100644 index 032e4e37..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest.xml deleted file mode 100644 index b341ae58..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest.xml deleted file mode 100644 index 399cbeb3..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest.xml deleted file mode 100644 index 57a933e7..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.NameMatchCandidateOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.NameMatchCandidateOutTest.xml deleted file mode 100644 index 47259a11..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.NameMatchCandidateOutTest.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.NameMatchCandidatesOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.NameMatchCandidatesOutTest.xml deleted file mode 100644 index fd1c4a89..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.NameMatchCandidatesOutTest.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGenderedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGenderedOutTest.xml deleted file mode 100644 index 01eb30b0..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGenderedOutTest.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGeoInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGeoInTest.xml deleted file mode 100644 index 26f9dbd0..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGeoInTest.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGeoOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGeoOutTest.xml deleted file mode 100644 index 29a0b141..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameGeoOutTest.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameInTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameInTest.xml deleted file mode 100644 index f66ee0dd..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameInTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameParsedOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameParsedOutTest.xml deleted file mode 100644 index fdd3f7b5..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.PersonalNameParsedOutTest.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.namsor.sdk2.model.SoftwareVersionOutTest.xml b/target/surefire-reports/TEST-com.namsor.sdk2.model.SoftwareVersionOutTest.xml deleted file mode 100644 index ca81c4c0..00000000 --- a/target/surefire-reports/TEST-com.namsor.sdk2.model.SoftwareVersionOutTest.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/com.namsor.sdk2.api.AdminApiTest.txt b/target/surefire-reports/com.namsor.sdk2.api.AdminApiTest.txt deleted file mode 100644 index 2a270b94..00000000 --- a/target/surefire-reports/com.namsor.sdk2.api.AdminApiTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.api.AdminApiTest -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0 sec diff --git a/target/surefire-reports/com.namsor.sdk2.api.ChineseApiTest.txt b/target/surefire-reports/com.namsor.sdk2.api.ChineseApiTest.txt deleted file mode 100644 index 9cd81187..00000000 --- a/target/surefire-reports/com.namsor.sdk2.api.ChineseApiTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.api.ChineseApiTest -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0 sec diff --git a/target/surefire-reports/com.namsor.sdk2.api.PersonalApiTest.txt b/target/surefire-reports/com.namsor.sdk2.api.PersonalApiTest.txt deleted file mode 100644 index 5cb7d4fa..00000000 --- a/target/surefire-reports/com.namsor.sdk2.api.PersonalApiTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.api.PersonalApiTest -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0 sec diff --git a/target/surefire-reports/com.namsor.sdk2.api.SocialApiTest.txt b/target/surefire-reports/com.namsor.sdk2.api.SocialApiTest.txt deleted file mode 100644 index ae0db09b..00000000 --- a/target/surefire-reports/com.namsor.sdk2.api.SocialApiTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.api.SocialApiTest -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIBillingPeriodUsageOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIBillingPeriodUsageOutTest.txt deleted file mode 100644 index f0d98313..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIBillingPeriodUsageOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIBillingPeriodUsageOutTest -------------------------------------------------------------------------------- -Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APICounterV2OutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APICounterV2OutTest.txt deleted file mode 100644 index 79f14608..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APICounterV2OutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APICounterV2OutTest -------------------------------------------------------------------------------- -Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIKeyOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIKeyOutTest.txt deleted file mode 100644 index 7ebd44a5..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIKeyOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIKeyOutTest -------------------------------------------------------------------------------- -Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIPeriodUsageOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIPeriodUsageOutTest.txt deleted file mode 100644 index 5ebc87d0..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIPeriodUsageOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIPeriodUsageOutTest -------------------------------------------------------------------------------- -Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIPlanSubscriptionOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIPlanSubscriptionOutTest.txt deleted file mode 100644 index 685e1c0a..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIPlanSubscriptionOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIPlanSubscriptionOutTest -------------------------------------------------------------------------------- -Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIServiceOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIServiceOutTest.txt deleted file mode 100644 index 8013db6d..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIServiceOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIServiceOutTest -------------------------------------------------------------------------------- -Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIServicesOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIServicesOutTest.txt deleted file mode 100644 index e2f3e76f..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIServicesOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIServicesOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.APIUsageAggregatedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.APIUsageAggregatedOutTest.txt deleted file mode 100644 index f2ab31d4..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.APIUsageAggregatedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.APIUsageAggregatedOutTest -------------------------------------------------------------------------------- -Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest.txt deleted file mode 100644 index 792e183f..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGenderInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGenderInTest.txt deleted file mode 100644 index 5614863c..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGenderInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameGenderInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest.txt deleted file mode 100644 index 4af268d7..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameGenderedOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGeoInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGeoInTest.txt deleted file mode 100644 index e73314c4..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGeoInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameGeoInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest.txt deleted file mode 100644 index 8dbe1d3e..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameGeoZippedInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameInTest.txt deleted file mode 100644 index 179d5bff..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest.txt deleted file mode 100644 index 05f5659b..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameOriginedOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest.txt deleted file mode 100644 index b46adc86..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest.txt deleted file mode 100644 index 0c05b807..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest.txt deleted file mode 100644 index 6bdf4d63..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest.txt deleted file mode 100644 index 1041f0fa..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest.txt deleted file mode 100644 index 687f1252..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchNameMatchCandidatesOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest.txt deleted file mode 100644 index bbd4201b..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchPersonalNameGenderedOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGeoInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGeoInTest.txt deleted file mode 100644 index 3f14a081..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGeoInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchPersonalNameGeoInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGeoOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGeoOutTest.txt deleted file mode 100644 index 1721e556..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameGeoOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchPersonalNameGeoOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameInTest.txt deleted file mode 100644 index 106034f3..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchPersonalNameInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameParsedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameParsedOutTest.txt deleted file mode 100644 index c316aa16..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.BatchPersonalNameParsedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.BatchPersonalNameParsedOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FeedbackLoopOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FeedbackLoopOutTest.txt deleted file mode 100644 index 848e8160..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FeedbackLoopOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FeedbackLoopOutTest -------------------------------------------------------------------------------- -Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest.txt deleted file mode 100644 index fcc30d67..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameDiasporaedOutTest -------------------------------------------------------------------------------- -Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGenderInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGenderInTest.txt deleted file mode 100644 index 62fd60a3..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGenderInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameGenderInTest -------------------------------------------------------------------------------- -Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGenderedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGenderedOutTest.txt deleted file mode 100644 index 32ac8879..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGenderedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameGenderedOutTest -------------------------------------------------------------------------------- -Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGeoInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGeoInTest.txt deleted file mode 100644 index 685424c2..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGeoInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameGeoInTest -------------------------------------------------------------------------------- -Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGeoZippedInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGeoZippedInTest.txt deleted file mode 100644 index 95704c0f..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameGeoZippedInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameGeoZippedInTest -------------------------------------------------------------------------------- -Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameInTest.txt deleted file mode 100644 index 2fc06095..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameInTest -------------------------------------------------------------------------------- -Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameOriginedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameOriginedOutTest.txt deleted file mode 100644 index e8c481e8..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameOriginedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameOriginedOutTest -------------------------------------------------------------------------------- -Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameOutTest.txt deleted file mode 100644 index d184121b..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameOutTest -------------------------------------------------------------------------------- -Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest.txt deleted file mode 100644 index 056cf525..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNamePhoneCodedOutTest -------------------------------------------------------------------------------- -Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest.txt deleted file mode 100644 index 7340b090..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoInTest -------------------------------------------------------------------------------- -Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest.txt deleted file mode 100644 index df2239fa..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNamePhoneNumberInTest -------------------------------------------------------------------------------- -Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest.txt deleted file mode 100644 index 63e09508..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOutTest -------------------------------------------------------------------------------- -Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.NameMatchCandidateOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.NameMatchCandidateOutTest.txt deleted file mode 100644 index e18fc3b3..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.NameMatchCandidateOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.NameMatchCandidateOutTest -------------------------------------------------------------------------------- -Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.NameMatchCandidatesOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.NameMatchCandidatesOutTest.txt deleted file mode 100644 index d2d30a83..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.NameMatchCandidatesOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.NameMatchCandidatesOutTest -------------------------------------------------------------------------------- -Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGenderedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGenderedOutTest.txt deleted file mode 100644 index f1a4c84c..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGenderedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.PersonalNameGenderedOutTest -------------------------------------------------------------------------------- -Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGeoInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGeoInTest.txt deleted file mode 100644 index 64a1e8d5..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGeoInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.PersonalNameGeoInTest -------------------------------------------------------------------------------- -Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGeoOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGeoOutTest.txt deleted file mode 100644 index 1ee5f9d5..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameGeoOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.PersonalNameGeoOutTest -------------------------------------------------------------------------------- -Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameInTest.txt b/target/surefire-reports/com.namsor.sdk2.model.PersonalNameInTest.txt deleted file mode 100644 index b7f8a419..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameInTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.PersonalNameInTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameParsedOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.PersonalNameParsedOutTest.txt deleted file mode 100644 index eb7618c1..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.PersonalNameParsedOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.PersonalNameParsedOutTest -------------------------------------------------------------------------------- -Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec diff --git a/target/surefire-reports/com.namsor.sdk2.model.SoftwareVersionOutTest.txt b/target/surefire-reports/com.namsor.sdk2.model.SoftwareVersionOutTest.txt deleted file mode 100644 index db10455b..00000000 --- a/target/surefire-reports/com.namsor.sdk2.model.SoftwareVersionOutTest.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.namsor.sdk2.model.SoftwareVersionOutTest -------------------------------------------------------------------------------- -Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec diff --git a/target/test-classes/com/namsor/sdk2/api/AdminApiTest.class b/target/test-classes/com/namsor/sdk2/api/AdminApiTest.class deleted file mode 100644 index f9fe5ae7..00000000 Binary files a/target/test-classes/com/namsor/sdk2/api/AdminApiTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/api/ChineseApiTest.class b/target/test-classes/com/namsor/sdk2/api/ChineseApiTest.class deleted file mode 100644 index fdb64e14..00000000 Binary files a/target/test-classes/com/namsor/sdk2/api/ChineseApiTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/api/PersonalApiTest.class b/target/test-classes/com/namsor/sdk2/api/PersonalApiTest.class deleted file mode 100644 index d3bc58d3..00000000 Binary files a/target/test-classes/com/namsor/sdk2/api/PersonalApiTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/api/SocialApiTest.class b/target/test-classes/com/namsor/sdk2/api/SocialApiTest.class deleted file mode 100644 index 80810d8b..00000000 Binary files a/target/test-classes/com/namsor/sdk2/api/SocialApiTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIBillingPeriodUsageOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIBillingPeriodUsageOutTest.class deleted file mode 100644 index 62e85461..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIBillingPeriodUsageOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APICounterV2OutTest.class b/target/test-classes/com/namsor/sdk2/model/APICounterV2OutTest.class deleted file mode 100644 index da968cd5..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APICounterV2OutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIKeyOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIKeyOutTest.class deleted file mode 100644 index fd2b032b..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIKeyOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIPeriodUsageOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIPeriodUsageOutTest.class deleted file mode 100644 index 11f60ea5..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIPeriodUsageOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIPlanSubscriptionOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIPlanSubscriptionOutTest.class deleted file mode 100644 index 783b323e..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIPlanSubscriptionOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIServiceOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIServiceOutTest.class deleted file mode 100644 index c93d485c..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIServiceOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIServicesOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIServicesOutTest.class deleted file mode 100644 index 813760bc..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIServicesOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/APIUsageAggregatedOutTest.class b/target/test-classes/com/namsor/sdk2/model/APIUsageAggregatedOutTest.class deleted file mode 100644 index 0eae8332..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/APIUsageAggregatedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOutTest.class deleted file mode 100644 index 7489c630..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGenderInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGenderInTest.class deleted file mode 100644 index 054d908e..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGenderInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGenderedOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGenderedOutTest.class deleted file mode 100644 index c21d50eb..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGenderedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGeoInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGeoInTest.class deleted file mode 100644 index 12d260b3..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGeoInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedInTest.class deleted file mode 100644 index e41748fc..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameInTest.class deleted file mode 100644 index f79f4437..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameOriginedOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameOriginedOutTest.class deleted file mode 100644 index deffb121..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameOriginedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOutTest.class deleted file mode 100644 index ecb7761e..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoInTest.class deleted file mode 100644 index 38505117..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberInTest.class deleted file mode 100644 index b14a2897..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOutTest.class deleted file mode 100644 index 52809cb7..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchNameMatchCandidatesOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchNameMatchCandidatesOutTest.class deleted file mode 100644 index 55c10a2d..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchNameMatchCandidatesOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGenderedOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGenderedOutTest.class deleted file mode 100644 index 5860b753..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGenderedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGeoInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGeoInTest.class deleted file mode 100644 index 8f4ae399..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGeoInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGeoOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGeoOutTest.class deleted file mode 100644 index 0593c59f..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameGeoOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameInTest.class b/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameInTest.class deleted file mode 100644 index a7722165..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameParsedOutTest.class b/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameParsedOutTest.class deleted file mode 100644 index a9ac28b9..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/BatchPersonalNameParsedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FeedbackLoopOutTest.class b/target/test-classes/com/namsor/sdk2/model/FeedbackLoopOutTest.class deleted file mode 100644 index c3da6fe5..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FeedbackLoopOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameDiasporaedOutTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameDiasporaedOutTest.class deleted file mode 100644 index bd41aa7b..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameDiasporaedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGenderInTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameGenderInTest.class deleted file mode 100644 index 0d2d5e2e..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGenderInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGenderedOutTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameGenderedOutTest.class deleted file mode 100644 index 8d6a6a17..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGenderedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGeoInTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameGeoInTest.class deleted file mode 100644 index ef4deee1..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGeoInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGeoZippedInTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameGeoZippedInTest.class deleted file mode 100644 index 7f5cc279..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameGeoZippedInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameInTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameInTest.class deleted file mode 100644 index 307d3b6b..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameOriginedOutTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameOriginedOutTest.class deleted file mode 100644 index 0276803e..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameOriginedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameOutTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameOutTest.class deleted file mode 100644 index 1eacfc73..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneCodedOutTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneCodedOutTest.class deleted file mode 100644 index 90b919f7..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneCodedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoInTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoInTest.class deleted file mode 100644 index 521194fe..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberInTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberInTest.class deleted file mode 100644 index 1e015430..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNamePhoneNumberInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOutTest.class b/target/test-classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOutTest.class deleted file mode 100644 index af3f5050..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/NameMatchCandidateOutTest.class b/target/test-classes/com/namsor/sdk2/model/NameMatchCandidateOutTest.class deleted file mode 100644 index 9204f0ce..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/NameMatchCandidateOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/NameMatchCandidatesOutTest.class b/target/test-classes/com/namsor/sdk2/model/NameMatchCandidatesOutTest.class deleted file mode 100644 index 7ed4cd0c..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/NameMatchCandidatesOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/PersonalNameGenderedOutTest.class b/target/test-classes/com/namsor/sdk2/model/PersonalNameGenderedOutTest.class deleted file mode 100644 index 4d4149d2..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/PersonalNameGenderedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/PersonalNameGeoInTest.class b/target/test-classes/com/namsor/sdk2/model/PersonalNameGeoInTest.class deleted file mode 100644 index bfe1bd86..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/PersonalNameGeoInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/PersonalNameGeoOutTest.class b/target/test-classes/com/namsor/sdk2/model/PersonalNameGeoOutTest.class deleted file mode 100644 index 07d35a55..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/PersonalNameGeoOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/PersonalNameInTest.class b/target/test-classes/com/namsor/sdk2/model/PersonalNameInTest.class deleted file mode 100644 index 360e8d89..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/PersonalNameInTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/PersonalNameParsedOutTest.class b/target/test-classes/com/namsor/sdk2/model/PersonalNameParsedOutTest.class deleted file mode 100644 index 3476e272..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/PersonalNameParsedOutTest.class and /dev/null differ diff --git a/target/test-classes/com/namsor/sdk2/model/SoftwareVersionOutTest.class b/target/test-classes/com/namsor/sdk2/model/SoftwareVersionOutTest.class deleted file mode 100644 index 66614a28..00000000 Binary files a/target/test-classes/com/namsor/sdk2/model/SoftwareVersionOutTest.class and /dev/null differ