Skip to content

File tree

README.dev.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
To get this access, first create a Central Portal account. You will then need
2121
access to our namespace, but we have not added anyone since switching to
22-
Central Portal. Previously you would need to make an account on the [Sonatype
23-
JIRA issue tracker](https://issues.sonatype.org/) and make an issue asking for
24-
access [like so](https://issues.sonatype.org/browse/OSSRH-34414).
22+
Central Portal. Previously you would need to make an account on the Sonatype
23+
JIRA issue tracker and make an issue asking for access. That tracker has since
24+
been [retired](https://central.sonatype.org/faq/what-happened-to-issues-sonatype-org/).
2525

2626
Ensure you inform MaxMind operations about your new access.
2727

@@ -52,7 +52,7 @@ and enter `trust` and choose ultimate.
5252
Make sure the key shows up in `gpg --list-secret-keys`.
5353

5454
Make sure you publish it to a keyserver. See
55-
[here](http://central.sonatype.org/pages/working-with-pgp-signatures.html)
55+
[here](https://central.sonatype.org/publish/requirements/gpg/)
5656
for more info about that and the process in general.
5757

5858
### gpg "inappropriate ioctl" errors

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ Please report all issues with this code using the
327327

328328
If you are having an issue with the minFraud service that is not specific
329329
to the client API, please see
330-
[our support page](https://www.maxmind.com/en/support).
330+
[our support page](https://support.maxmind.com/knowledge-base).
331331

332332
## Requirements ##
333333

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
<version>4.3.0</version>
88
<name>MaxMind minFraud API</name>
99
<description>MaxMind minFraud Score, Insights, Factors and Report Transaction API</description>
10-
<url>http://dev.maxmind.com/minfraud</url>
10+
<url>https://dev.maxmind.com/minfraud/</url>
1111
<licenses>
1212
<license>
1313
<name>Apache License, Version 2.0</name>
14-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
14+
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
1515
<distribution>repo</distribution>
1616
</license>
1717
</licenses>
1818
<organization>
1919
<name>MaxMind, Inc.</name>
20-
<url>http://www.maxmind.com/</url>
20+
<url>https://www.maxmind.com/en/home</url>
2121
</organization>
2222
<scm>
2323
<url>https://github.com/maxmind/minfraud-api-java</url>

src/main/java/com/maxmind/minfraud/request/CustomInputs.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
/**
1010
* Custom inputs to be used in
11-
* <a href="https://www.maxmind.com/en/minfraud-interactive/#/custom-rules">Custom Rules</a>.
11+
* <a href="https://www.maxmind.com/en/accounts/current/minfraud-interactive/custom-rules">Custom
12+
* Rules</a>.
1213
* In order to use custom inputs, you must set them up from your account portal.
1314
*/
1415
public final class CustomInputs extends AbstractModel {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* date-time.
2222
* @param localTime The date and time of the transaction at the UTC offset associated with the
2323
* device. This is an RFC 3339 date-time.
24-
* @see <a href="https://dev.maxmind.com/minfraud/track-devices?lang=en">Device Tracking Add-on</a>
24+
* @see <a href="https://dev.maxmind.com/minfraud/track-devices/?lang=en">Device Tracking Add-on</a>
2525
*/
2626
public record Device(
2727
@JsonProperty("confidence")

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
* @param inputPointer This is a JSON Pointer to the input that the warning is associated with. For
3636
* instance, if the warning was about the billing city, the value would be
3737
* "/billing/city". See
38-
* <a href="https://tools.ietf.org/html/rfc6901">RFC 6901</a> for the JSON
39-
* Pointer spec.
38+
* <a href="https://datatracker.ietf.org/doc/html/rfc6901">RFC 6901</a> for the
39+
* JSON Pointer spec.
4040
*/
4141
public record Warning(
4242
@JsonProperty("code")
@@ -99,7 +99,8 @@ public String getWarning() {
9999
* @return This is a JSON Pointer to the input that the warning is associated with. For
100100
* instance, if the warning was about the billing city, the value would be "/billing/city".
101101
* See
102-
* <a href="https://tools.ietf.org/html/rfc6901">RFC 6901</a> for the JSON Pointer spec.
102+
* <a href="https://datatracker.ietf.org/doc/html/rfc6901">RFC 6901</a> for the JSON Pointer
103+
* spec.
103104
* @deprecated Use {@link #inputPointer()} instead. This method will be removed in 5.0.0.
104105
*/
105106
@Deprecated(since = "4.0.0", forRemoval = true)

0 commit comments

Comments
 (0)