Skip to content

Commit 99ad06c

Browse files
author
JW Wesson
committed
update URLs
1 parent 52654f3 commit 99ad06c

35 files changed

+88
-88
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ For every relevant method in the `SovrenClient`, you can create a Matching UI se
7878
[okhttp_url]: https://github.com/square/okhttp
7979
[examples]: https://github.com/sovren/sovren-java/tree/master/examples
8080
[portal]: https://portal.sovren.com
81-
[api-docs]: https://sovren.com/technical-specs/latest/rest-api/overview/
81+
[api-docs]: https://developer.textkernel.com/Sovren/v10/overview/

examples/parsing/Basic Parsing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class ParsingExample {
2727
Document doc = new Document("resume.docx");
2828

2929
//when you create a ParseRequest, you can specify many configuration settings
30-
//in the ParseOptions. See https://sovren.com/technical-specs/latest/rest-api/resume-parser/api/
30+
//in the ParseOptions. See https://developer.textkernel.com/Sovren/v10/resume-parser/api/
3131
ParseRequest request = new ParseRequest(doc, new ParseOptions());
3232

3333
try {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>jar</packaging>
1010
<name>Sovren Java SDK</name>
1111
<description>The official Java SDK for the Sovren v10 API.</description>
12-
<url>https://sovren.com/technical-specs/latest/rest-api/overview/</url>
12+
<url>https://developer.textkernel.com/Sovren/v10/overview/</url>
1313

1414
<licenses>
1515
<license>

src/main/java/com/textkernel/tx/SovrenClient.java

Lines changed: 38 additions & 38 deletions
Large diffs are not rendered by default.

src/main/java/com/textkernel/tx/exceptions/SovrenException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ public class SovrenException extends Exception {
1919
/** The raw response from the API */
2020
public Response RestResponse;
2121

22-
/** The HTTP Status Code of the response. See https://sovren.com/technical-specs/latest/rest-api/overview/#http-status-codes*/
22+
/** The HTTP Status Code of the response. See https://developer.textkernel.com/Sovren/v10/overview/#http-status-codes*/
2323
public int HttpStatusCode;
2424

25-
/** The Info.Code of the response. This will indicate what type of error occurred. See https://sovren.com/technical-specs/latest/rest-api/overview/#http-status-codes*/
25+
/** The Info.Code of the response. This will indicate what type of error occurred. See https://developer.textkernel.com/Sovren/v10/overview/#http-status-codes*/
2626
public String SovrenErrorCode;
2727

2828
/** The Id of the transaction, use this when reporting errors to Sovren Support*/

src/main/java/com/textkernel/tx/models/api/ApiResponseInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* Information/metadata for an individual REST API call.
10-
* See https://sovren.com/technical-specs/latest/rest-api/overview/#http-status-codes
10+
* See https://developer.textkernel.com/Sovren/v10/overview/#http-status-codes
1111
*/
1212
public class ApiResponseInfo extends ApiResponseInfoLite {
1313

src/main/java/com/textkernel/tx/models/api/ApiResponseInfoLite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
/**
99
* Information/metadata for an individual REST API call.
10-
* See https://sovren.com/technical-specs/latest/rest-api/overview/#http-status-codes
10+
* See https://developer.textkernel.com/Sovren/v10/overview/#http-status-codes
1111
*/
1212
public class ApiResponseInfoLite {
1313

14-
/** See https://sovren.com/technical-specs/latest/rest-api/overview/#http-status-codes*/
14+
/** See https://developer.textkernel.com/Sovren/v10/overview/#http-status-codes*/
1515
public String Code;
1616

1717
/** A short human-readable description explaining the {@link #Code} value*/

src/main/java/com/textkernel/tx/models/api/dataenrichment/AutocompleteRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public class AutocompleteRequest {
1313
public String Prefix;
1414
/** The maximum number of returned professions. The default is 10 and the maximum is 100. */
1515
public int Limit = 10;
16-
/** The language(s) used to search for matching professions (the language of the provided Prefix). A maximum of 5 languages can be provided. Must be one of the supported <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-languages">ISO codes</a>. */
16+
/** The language(s) used to search for matching professions (the language of the provided Prefix). A maximum of 5 languages can be provided. Must be one of the supported <a href="https://developer.textkernel.com/Sovren/v10/data-enrichment/overview/#professions-languages">ISO codes</a>. */
1717
public List<String> Languages;
18-
/** The language to ouput the found professions in (default is 'en'). Must be one of the supported <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-languages">ISO codes</a>. */
18+
/** The language to ouput the found professions in (default is 'en'). Must be one of the supported <a href="https://developer.textkernel.com/Sovren/v10/data-enrichment/overview/#professions-languages">ISO codes</a>. */
1919
public String OutputLanguage = "en";
2020
}

src/main/java/com/textkernel/tx/models/api/dataenrichment/ontology/request/CompareProfessionsRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
/** Request body for a 'CompareProfessions' request */
99
public class CompareProfessionsRequest {
10-
/** A profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare. */
10+
/** A profession code ID from the <a href="https://developer.textkernel.com/Sovren/v10/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare. */
1111
public int ProfessionACodeId;
12-
/** A profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare. */
12+
/** A profession code ID from the <a href="https://developer.textkernel.com/Sovren/v10/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare. */
1313
public int ProfessionBCodeId;
1414
/** The language to use for the returned descriptions. */
1515
public String OutputLanguage;

src/main/java/com/textkernel/tx/models/api/dataenrichment/ontology/request/CompareSkillsToProfessionRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
public class CompareSkillsToProfessionRequest {
1313
/** The skills which should be compared against the given profession. The list can contain up to 50 skills. */
1414
public List<SkillScore> Skills;
15-
/** The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare the skill set to. */
15+
/** The profession code ID from the <a href="https://developer.textkernel.com/Sovren/v10/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare the skill set to. */
1616
public int ProfessionCodeId;
1717
/** The language to use for the returned descriptions. */
1818
public String OutputLanguage;

0 commit comments

Comments
 (0)