Skip to content

Commit 8ec809d

Browse files
committed
Make DocLint happy
1 parent e56ced1 commit 8ec809d

7 files changed

Lines changed: 69 additions & 1 deletion

File tree

src/main/java/com/maxmind/minfraud/response/CreditCard.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ public final class CreditCard extends AbstractModel {
1919
/**
2020
* @deprecated This constructor only exists for backward compatibility
2121
* and will be removed in the next major release.
22+
*
23+
* @param brand The credit card brand.
24+
* @param country The country the card was issued in.
25+
* @param isIssuedInBillingAddressCountry Whether the issuing country matches billing country.
26+
* @param isPrepaid Whether the card was prepaid.
27+
* @param issuer The issuer information.
28+
* @param type The type.
2229
*/
2330
public CreditCard(
2431
String brand,
@@ -35,6 +42,14 @@ public CreditCard(
3542
/**
3643
* @deprecated This constructor only exists for backward compatibility
3744
* and will be removed in the next major release.
45+
*
46+
* @param brand The credit card brand.
47+
* @param country The country the card was issued in.
48+
* @param isIssuedInBillingAddressCountry Whether the issuing country matches billing country.
49+
* @param isPrepaid Whether the card was prepaid.
50+
* @param isVirtual Whether it is a virtual card.
51+
* @param issuer The issuer information.
52+
* @param type The type.
3853
*/
3954
public CreditCard(
4055
String brand,

src/main/java/com/maxmind/minfraud/response/Device.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ public final class Device extends AbstractModel {
2424
/**
2525
* @deprecated This constructor only exists for backward compatibility
2626
* and will be removed in the next major release.
27+
*
28+
* @param confidence The device confidence.
29+
* @param id The device ID.
30+
* @param lastSeen When the device was last seen.
2731
*/
2832
public Device(
2933
Double confidence,

src/main/java/com/maxmind/minfraud/response/Email.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ public Email(
3333
/**
3434
* @deprecated This constructor only exists for backward compatibility
3535
* and will be removed in the next major release.
36+
*
37+
* @param isDisposable Whether it is a disposable email.
38+
* @param isFree Whether it is a free email.
39+
* @param isHighRisk Whether it is a high risk email.
40+
* @param firstSeen When the email was first seen.
3641
*/
3742
public Email(
3843
Boolean isDisposable,
@@ -46,6 +51,10 @@ public Email(
4651
/**
4752
* @deprecated This constructor only exists for backward compatibility
4853
* and will be removed in the next major release.
54+
*
55+
* @param isFree Whether it is a free email.
56+
* @param isHighRisk Whether it is a high risk email.
57+
* @param firstSeen When the email was first seen.
4958
*/
5059
public Email(
5160
Boolean isFree,
@@ -58,6 +67,9 @@ public Email(
5867
/**
5968
* @deprecated This constructor only exists for backward compatibility
6069
* and will be removed in the next major release.
70+
*
71+
* @param isFree Whether it is a free email.
72+
* @param isHighRisk Whether it is a high risk email.
6173
*/
6274
public Email(
6375
Boolean isFree,

src/main/java/com/maxmind/minfraud/response/GeoIp2Country.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ public final class GeoIp2Country extends Country {
1717
/**
1818
* @deprecated This constructor only exists for backward compatibility
1919
* and will be removed in the next major release.
20+
*
21+
* @param locales The locales.
22+
* @param confidence The confidence.
23+
* @param geoNameId The GeoName ID.
24+
* @param isHighRisk Whether it is a high risk country.
25+
* @param isoCode The ISO code.
26+
* @param names The names.
2027
*/
2128
public GeoIp2Country(
2229
List<String> locales,

src/main/java/com/maxmind/minfraud/response/IpAddress.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@ public IpAddress(
4141
/**
4242
* @deprecated This constructor only exists for backward compatibility
4343
* and will be removed in the next major release.
44+
*
45+
* @param city The city information.
46+
* @param continent The continent information.
47+
* @param country The country information.
48+
* @param location The location information.
49+
* @param maxmind Maxmind-specific information.
50+
* @param postal The postal information.
51+
* @param registeredCountry The information about the country where the IP was registered.
52+
* @param representedCountry The represented country, e.g., for military bases in other countries.
53+
* @param risk The IP risk.
54+
* @param subdivisions The list of subdivisions.
55+
* @param traits Information about various other IP traits.
4456
*/
4557
public IpAddress(
4658
City city,

src/main/java/com/maxmind/minfraud/response/IpRiskReason.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public IpRiskReason(
2424
* <dl>
2525
* <dt>ANONYMOUS_IP</dt>
2626
* <dd>The IP address belongs to an anonymous network. See the
27-
* object at <c>.IPAddress.Traits</c> for more details.</dd>
27+
* object at <code>.IPAddress.Traits</code> for more details.</dd>
2828
*
2929
* <dt>BILLING_POSTAL_VELOCITY</dt>
3030
* <dd>Many different billing postal codes have been seen on

src/main/java/com/maxmind/minfraud/response/Subscores.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,24 @@ public Subscores(
7575
/**
7676
* @deprecated This constructor only exists for backward compatibility
7777
* and will be removed in the next major release.
78+
*
79+
* @param avsResult The AVS result subscore.
80+
* @param billingAddress The billing address subscore.
81+
* @param billingAddressDistanceToIpLocation The billing address distance to the IP location subscore.
82+
* @param browser The browser subscore.
83+
* @param chargeback The chargeback subscore.
84+
* @param country The country subscore.
85+
* @param countryMismatch The country mismatch subscore.
86+
* @param cvvResult The CVV result subscore.
87+
* @param emailAddress The email address subscore.
88+
* @param emailDomain The email domain subscore.
89+
* @param emailTenure The email tenure subscore.
90+
* @param ipTenure The IP tenure subscore.
91+
* @param issuerIdNumber The IIN subscore.
92+
* @param orderAmount The order amount subscore.
93+
* @param phoneNumber The phone number subscore.
94+
* @param shippingAddressDistanceToIpLocation The shipping address distance to IP location subscore.
95+
* @param timeOfDay The time of day subscore.
7896
*/
7997
public Subscores(
8098
Double avsResult,

0 commit comments

Comments
 (0)