Skip to content

Commit 88b15b6

Browse files
committed
(disabled services)
1 parent 2fa10f7 commit 88b15b6

File tree

20 files changed

+39
-21
lines changed

20 files changed

+39
-21
lines changed

src/main/java/org/nameapi/client/services/email/emaildomaintypeclassifier/EmailDomainTypeClassifierCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public class EmailDomainTypeClassifierCommand
2929

3030
public EmailDomainTypeClassifierCommand() {
3131
super(RestPort.class);
32+
throw new UnsupportedOperationException("Service currently not available as public API.");
3233
}
3334

3435
@Override @NotNull

src/main/java/org/nameapi/client/services/nameparser/fieldnameparser/FieldNameParserCommand.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
import java.util.concurrent.Callable;
1515

1616
/**
17+
* Service currently not available as public API.
18+
*
1719
* Parses the contents of a name field into its components.
1820
*/
1921
public class FieldNameParserCommand

src/main/java/org/nameapi/client/services/nameparser/syntax/SyntaxBasedNameParserCommand.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package org.nameapi.client.services.nameparser.syntax;
22

33
/**
4+
* Service currently not available as public API.
5+
*
46
* The command that parses a name string into its elements based on custom syntax rules.
57
*/
68
public class SyntaxBasedNameParserCommand

src/main/java/org/nameapi/client/services/validator/famouspersondetector/FamousPersonDetectorCommand.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
import java.util.concurrent.Callable;
1212

1313
/**
14+
* Service currently not available as public API.
15+
*
16+
*
1417
* Tells if and how famous a person's name is.
1518
*
1619
* <p>The classification is done with a global view, not specific to the context's place.</p>

src/main/java/org/nameapi/client/services/validator/gender/genericgendervalidator/GenericGenderValidatorCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import java.util.concurrent.Callable;
1111

1212
/**
13-
* ...
13+
* Service currently not available as public API.
1414
*/
1515
public class GenericGenderValidatorCommand
1616
// extends NameApiBaseCommand<SoapGenericGenderValidator, InputPerson, GenderValidationResult>

src/main/java/org/nameapi/client/services/validator/placeholdernamedetector/PlaceholderNameDetectorCommand.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
import java.util.concurrent.Callable;
1212

1313
/**
14+
* Service currently not available as public API.
15+
*
16+
*
17+
*
1418
* Detects placeholder names such as "John Doe".
1519
*
1620
* <p>Returns <code>null</code> if the name is not known as a placeholder name.</p>

src/main/java/org/nameapi/client/services/validator/randomtyping/givennamerandomtypingdetector/GivenNameRandomTypingDetectorCommand.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@
99
import java.util.concurrent.Callable;
1010

1111
/**
12-
* ...
12+
* Service currently not available as public API.
13+
*
14+
*
1315
*/
1416
public class GivenNameRandomTypingDetectorCommand extends NameApiBaseCommand<RestPort, String, RandomTypingResult> {
1517

1618
private static final String SERVICE_PATH = "/validator/randomtypingdetector/givennamefield";
1719

1820
public GivenNameRandomTypingDetectorCommand() {
1921
super(RestPort.class);
22+
throw new UnsupportedOperationException("Service currently not available as public API.");
2023
}
2124

2225
@Override

src/main/java/org/nameapi/client/services/validator/randomtyping/personrandomtypingdetector/PersonRandomTypingDetectorCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import java.util.concurrent.Callable;
1212

1313
/**
14-
* ...
14+
* Service currently not available as public API.
1515
*/
1616
public class PersonRandomTypingDetectorCommand
1717
// extends NameApiBaseCommand<SoapPersonRandomTypingDetector, InputPerson, Integer>

src/main/java/org/nameapi/client/services/validator/randomtyping/surnamerandomtypingdetector/SurnameRandomTypingDetectorCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import java.util.concurrent.Callable;
1111

1212
/**
13-
* ...
13+
* Service currently not available as public API.
1414
*/
1515
public class SurnameRandomTypingDetectorCommand
1616
// extends NameApiBaseCommand<SoapSurnameRandomTypingDetector, String, Integer>

src/main/java/org/nameapi/client/services/validator/randomtyping/textfieldrandomtypingdetector/TextFieldRandomTypingDetectorCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import java.util.concurrent.Callable;
1111

1212
/**
13-
* ...
13+
* Service currently not available as public API.
1414
*/
1515
public class TextFieldRandomTypingDetectorCommand
1616
// extends NameApiBaseCommand<SoapTextFieldRandomTypingDetector, String, Integer>

0 commit comments

Comments
 (0)