Skip to content

Commit 2590829

Browse files
authored
Merge pull request #269 from maxmind/kevin/update-dev-links
Update dev.maxmind.com links
2 parents 1447259 + 66ec7fd commit 2590829

File tree

7 files changed

+10
-13
lines changed

7 files changed

+10
-13
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
## Description ##
44

5-
This distribution provides an API for the GeoIP2
6-
[Precision web services](https://dev.maxmind.com/geoip/geoip2/web-services) and
7-
[databases](https://dev.maxmind.com/geoip/geoip2/downloadable). The API also
8-
works with the free [GeoLite2 databases](https://dev.maxmind.com/geoip/geoip2/geolite2/).
5+
This distribution provides an API for the GeoIP2 and GeoLite2 [web
6+
services](https://dev.maxmind.com/geoip/docs/web-services?lang=en) and
7+
[databases](https://dev.maxmind.com/geoip/docs/databases?lang=en).
98

109
## Installation ##
1110

@@ -424,7 +423,7 @@ System.out.println(response.getOrganization()); // 'University o
424423

425424
For details on the possible errors returned by the web service itself, [see
426425
the GeoIP2 Precision web service
427-
documentation](https://dev.maxmind.com/geoip2/geoip/web-services).
426+
documentation](https://dev.maxmind.com/geoip/docs/web-services?lang=en).
428427

429428
If the web service returns an explicit error document, this is thrown as an
430429
`AddressNotFoundException`, an `AuthenticationException`, an
@@ -470,7 +469,7 @@ Because of these factors, it is possible for any end point to return a record
470469
where some or all of the attributes are unpopulated.
471470

472471
[See our web-service developer
473-
documentation](https://dev.maxmind.com/geoip/geoip2/web-services) for
472+
documentation](https://dev.maxmind.com/geoip/docs/web-services?lang=en) for
474473
details on what data each end point may return.
475474

476475
The only piece of data which is always returned is the `ip_address`

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<packaging>jar</packaging>
88
<name>MaxMind GeoIP2 API</name>
99
<description>GeoIP2 webservice client and database reader</description>
10-
<url>http://dev.maxmind.com/geoip/geoip2/web-services</url>
10+
<url>https://dev.maxmind.com/geoip?lang=en</url>
1111
<licenses>
1212
<license>
1313
<name>Apache License, Version 2.0</name>

src/main/java/com/maxmind/geoip2/WebServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
* <h2>Exceptions</h2>
7979
* <p>
8080
* For details on the possible errors returned by the web service itself, see <a
81-
* href="https://dev.maxmind.com/geoip/geoip2/web-services">the GeoIP2 web
81+
* href="https://dev.maxmind.com/geoip/docs/web-services?lang=en">the GeoIP2 web
8282
* service documentation</a>.
8383
* </p>
8484
* <p>

src/main/java/com/maxmind/geoip2/model/CityResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* </p>
2222
* <p>
2323
*
24-
* @see <a href="https://dev.maxmind.com/geoip/geoip2/web-services">GeoIP2 Web
24+
* @see <a href="https://dev.maxmind.com/geoip/docs/web-services?lang=en">GeoIP2 Web
2525
* Services</a>
2626
* </p>
2727
*/

src/main/java/com/maxmind/geoip2/model/CountryResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* This class provides a model for the data returned by the GeoIP2 Precision:
1515
* Country end point.
1616
*
17-
* @see <a href="https://dev.maxmind.com/geoip/geoip2/web-services">GeoIP2 Web
17+
* @see <a href="https://dev.maxmind.com/geoip/docs/web-services?lang=en">GeoIP2 Web
1818
* Services</a>
1919
*/
2020
public final class CountryResponse extends AbstractCountryResponse {

src/main/java/com/maxmind/geoip2/model/InsightsResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* </p>
1818
* <p>
1919
*
20-
* @see <a href="https://dev.maxmind.com/geoip/geoip2/web-services">GeoIP2 Web
20+
* @see <a href="https://dev.maxmind.com/geoip/docs/web-services?lang=en">GeoIP2 Web
2121
* Services</a>
2222
* </p>
2323
*/

src/main/java/com/maxmind/geoip2/record/Traits.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,6 @@ public boolean isAnonymous() {
371371
/**
372372
* @return This is true if the IP is an anonymous proxy. This attribute is
373373
* returned by all end points.
374-
* @see <a href="https://dev.maxmind.com/faq/geoip#anonproxy">MaxMind's GeoIP
375-
* FAQ</a>
376374
* @deprecated Use our
377375
* <a href="https://www.maxmind.com/en/geoip2-anonymous-ip-database">GeoIP2
378376
* Anonymous IP database</a> instead.

0 commit comments

Comments
 (0)