-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aligned SDK to latest API version (v2.2)
Added support for importing email addresses from a file / input stream / byte array Improved null values handling while serializing JSON data Fixed an issue with the charset used while serializing input data (#4) Refactored the way RestRequest builds Http requests
- Loading branch information
Showing
17 changed files
with
810 additions
and
138 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
100 changes: 100 additions & 0 deletions
100
src/main/java/com/verifalia/api/emailvalidations/models/AbstractValidationRequest.java
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 |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* | ||
* Verifalia - Email list cleaning and real-time email verification service | ||
* https://verifalia.com/ | ||
* support@verifalia.com | ||
* | ||
* Copyright (c) 2005-2020 Cobisi Research | ||
* | ||
* Cobisi Research | ||
* Via Prima Strada, 35 | ||
* 35129, Padova | ||
* Italy - European Union | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
package com.verifalia.api.emailvalidations.models; | ||
|
||
import com.verifalia.api.common.serialization.DurationSerializer; | ||
import com.verifalia.api.emailvalidations.serialization.QualityLevelNameSerializer; | ||
import com.verifalia.api.emailvalidations.serialization.ValidationPrioritySerializer; | ||
import lombok.*; | ||
import org.apache.commons.lang3.StringUtils; | ||
import org.codehaus.jackson.map.annotate.JsonSerialize; | ||
|
||
import java.time.Duration; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
import static java.util.Objects.nonNull; | ||
|
||
/** | ||
* Represents the abstract base class for email validation requests to be submitted against the Verifalia API. | ||
*/ | ||
@Getter | ||
@Setter | ||
@ToString | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class AbstractValidationRequest { | ||
private static final Integer VALIDATION_INPUT_PRIORITY_MIN_VALUE = 0; | ||
private static final Integer VALIDATION_INPUT_PRIORITY_MAX_VALUE = 255; | ||
|
||
/** | ||
* An optional user-defined name for the validation job, for your own reference. The name will be returned on | ||
* subsequent API calls and shown on the Verifalia clients area. | ||
*/ | ||
private String name; | ||
|
||
/** | ||
* A reference to the expected results quality level for this request. Quality levels determine how Verifalia validates | ||
* email addresses, including whether and how the automatic reprocessing logic occurs (for transient statuses) and the | ||
* verification timeouts settings. | ||
* Use one of {@link QualityLevelName#Standard}, {@link QualityLevelName#High} or {@link QualityLevelName#Extreme} | ||
* values or a custom quality level ID if you have one (custom quality levels are available to premium plans only). | ||
*/ | ||
@JsonSerialize(using = QualityLevelNameSerializer.class, include = JsonSerialize.Inclusion.NON_NULL) | ||
private QualityLevelName quality; | ||
|
||
/** | ||
* The strategy Verifalia follows while determining which email addresses are duplicates, within a multiple items job. | ||
* Duplicated items (after the first occurrence) will have the {@link ValidationEntryStatus#Duplicate} status. | ||
*/ | ||
private DeduplicationMode deduplication; | ||
|
||
/** | ||
* The eventual priority (speed) of the validation job, relative to the parent Verifalia account. In the event of an account | ||
* with many concurrent validation jobs, this value allows to increase the processing speed of a job with respect to the others. | ||
* The allowed range of values spans from {@link ValidationPriority#Lowest} (0 - lowest priority) to | ||
* {@link ValidationPriority#Highest} (255 - highest priority), where the midway value | ||
* {@link ValidationPriority#Normal} (127) means normal priority; if not specified, Verifalia processes all the | ||
* concurrent validation jobs for an account using the same priority. | ||
*/ | ||
@JsonSerialize(using = ValidationPrioritySerializer.class, include = JsonSerialize.Inclusion.NON_NULL) | ||
private ValidationPriority priority; | ||
|
||
/** | ||
* The maximum data retention period Verifalia observes for this verification job, after which the job will be | ||
* automatically deleted. A verification job can be deleted anytime prior to its retention period through the | ||
* {@link com.verifalia.api.emailvalidations.EmailValidationsRestClient#delete(String)} method. | ||
*/ | ||
@JsonSerialize(using = DurationSerializer.class, include = JsonSerialize.Inclusion.NON_NULL) | ||
private Duration retention; | ||
} |
Oops, something went wrong.