-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sergey Shelomentsev
committed
Jul 25, 2024
1 parent
0d566ed
commit 0efd179
Showing
108 changed files
with
1,082 additions
and
2,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,27 @@ | ||
/* | ||
* Fingerprint Pro Server API | ||
* Fingerprint Pro Server API allows you to get information about visitors and about individual events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device. | ||
* | ||
* The version of the OpenAPI document: 3 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
package com.fingerprint.model; | ||
|
||
import java.util.Objects; | ||
import java.util.Arrays; | ||
import java.util.Map; | ||
import java.util.HashMap; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.fasterxml.jackson.annotation.JsonValue; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import java.util.Arrays; | ||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
import com.fingerprint.sdk.JSON; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
/** | ||
* ASN | ||
*/ | ||
|
||
|
||
@JsonPropertyOrder({ | ||
ASN.JSON_PROPERTY_ASN, | ||
ASN.JSON_PROPERTY_NETWORK, | ||
ASN.JSON_PROPERTY_NAME | ||
}) | ||
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") | ||
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0") | ||
public class ASN { | ||
public static final String JSON_PROPERTY_ASN = "asn"; | ||
private String asn; | ||
|
@@ -59,8 +44,8 @@ public ASN asn(String asn) { | |
* Get asn | ||
* @return asn | ||
**/ | ||
@javax.annotation.Nonnull | ||
@ApiModelProperty(example = "7922", required = true, value = "") | ||
@jakarta.annotation.Nonnull | ||
@Schema(example = "7922", required = true, description = "") | ||
@JsonProperty(JSON_PROPERTY_ASN) | ||
@JsonInclude(value = JsonInclude.Include.ALWAYS) | ||
|
||
|
@@ -85,8 +70,8 @@ public ASN network(String network) { | |
* Get network | ||
* @return network | ||
**/ | ||
@javax.annotation.Nonnull | ||
@ApiModelProperty(example = "73.136.0.0/13", required = true, value = "") | ||
@jakarta.annotation.Nonnull | ||
@Schema(example = "73.136.0.0/13", required = true, description = "") | ||
@JsonProperty(JSON_PROPERTY_NETWORK) | ||
@JsonInclude(value = JsonInclude.Include.ALWAYS) | ||
|
||
|
@@ -111,8 +96,8 @@ public ASN name(String name) { | |
* Get name | ||
* @return name | ||
**/ | ||
@javax.annotation.Nullable | ||
@ApiModelProperty(example = "COMCAST-7922", value = "") | ||
@jakarta.annotation.Nullable | ||
@Schema(example = "COMCAST-7922", description = "") | ||
@JsonProperty(JSON_PROPERTY_NAME) | ||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,32 @@ | ||
/* | ||
* Fingerprint Pro Server API | ||
* Fingerprint Pro Server API allows you to get information about visitors and about individual events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device. | ||
* | ||
* The version of the OpenAPI document: 3 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
package com.fingerprint.model; | ||
|
||
import java.util.Objects; | ||
import java.util.Arrays; | ||
import java.util.Map; | ||
import java.util.HashMap; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.fasterxml.jackson.annotation.JsonValue; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import java.util.Arrays; | ||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
import com.fingerprint.sdk.JSON; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
/** | ||
* Stores bot detection result | ||
*/ | ||
@ApiModel(description = "Stores bot detection result") | ||
|
||
@Schema(description = "Stores bot detection result") | ||
@JsonPropertyOrder({ | ||
BotdDetectionResult.JSON_PROPERTY_RESULT, | ||
BotdDetectionResult.JSON_PROPERTY_TYPE | ||
}) | ||
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen") | ||
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0") | ||
public class BotdDetectionResult { | ||
/** | ||
* Bot detection result: * `notDetected` - the visitor is not a bot * `good` - good bot detected, such as Google bot, Baidu Spider, AlexaBot and so on * `bad` - bad bot detected, such as Selenium, Puppeteer, Playwright, headless browsers, and so on | ||
*/ | ||
public enum ResultEnum { | ||
NOTDETECTED("notDetected"), | ||
NOT_DETECTED("notDetected"), | ||
|
||
GOOD("good"), | ||
|
||
|
@@ -93,8 +77,8 @@ public BotdDetectionResult result(ResultEnum result) { | |
* Bot detection result: * `notDetected` - the visitor is not a bot * `good` - good bot detected, such as Google bot, Baidu Spider, AlexaBot and so on * `bad` - bad bot detected, such as Selenium, Puppeteer, Playwright, headless browsers, and so on | ||
* @return result | ||
**/ | ||
@javax.annotation.Nonnull | ||
@ApiModelProperty(example = "bad", required = true, value = "Bot detection result: * `notDetected` - the visitor is not a bot * `good` - good bot detected, such as Google bot, Baidu Spider, AlexaBot and so on * `bad` - bad bot detected, such as Selenium, Puppeteer, Playwright, headless browsers, and so on ") | ||
@jakarta.annotation.Nonnull | ||
@Schema(example = "bad", required = true, description = "Bot detection result: * `notDetected` - the visitor is not a bot * `good` - good bot detected, such as Google bot, Baidu Spider, AlexaBot and so on * `bad` - bad bot detected, such as Selenium, Puppeteer, Playwright, headless browsers, and so on ") | ||
@JsonProperty(JSON_PROPERTY_RESULT) | ||
@JsonInclude(value = JsonInclude.Include.ALWAYS) | ||
|
||
|
@@ -119,8 +103,8 @@ public BotdDetectionResult type(String type) { | |
* Get type | ||
* @return type | ||
**/ | ||
@javax.annotation.Nullable | ||
@ApiModelProperty(example = "selenium", value = "") | ||
@jakarta.annotation.Nullable | ||
@Schema(example = "selenium", description = "") | ||
@JsonProperty(JSON_PROPERTY_TYPE) | ||
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) | ||
|
||
|
Oops, something went wrong.