From 697537939803d3851dac0a9d312701e230df0e6c Mon Sep 17 00:00:00 2001 From: Automation51D <51DCI@51Degrees.com> Date: Fri, 28 Aug 2026 05:40:29 +0000 Subject: [PATCH] Update properties --- .../fiftyone/ipintelligence/shared/IPIntelligenceData.java | 6 ++++++ .../ipintelligence/shared/IPIntelligenceDataBase.java | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java index 462e92e..35e0105 100644 --- a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java +++ b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceData.java @@ -44,14 +44,20 @@ public interface IPIntelligenceData extends AspectData AspectPropertyValue getAccuracyRadiusMin(); /** * Any shapes associated with the location. Usually this is the area which the IP range covers. This is returned as a WKT String stored as a reduced format of WKB. + * + * @see More information */ AspectPropertyValue getAreas(); /** * Autonomous System Number associated with the IP address. + * + * @see More information */ AspectPropertyValue getAsn(); /** * The name registered to the Asn associated with the IP address. + * + * @see More information */ AspectPropertyValue getAsnName(); /** diff --git a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java index 95ae959..db2b443 100644 --- a/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java +++ b/ip-intelligence.shared/src/main/java/fiftyone/ipintelligence/shared/IPIntelligenceDataBase.java @@ -64,18 +64,24 @@ protected IPIntelligenceDataBase( public AspectPropertyValue getAccuracyRadiusMin() { return getAs("accuracyradiusmin", AspectPropertyValue.class, Integer.class); } /** * Any shapes associated with the location. Usually this is the area which the IP range covers. This is returned as a WKT String stored as a reduced format of WKB. + * + * @see More information */ @SuppressWarnings("unchecked") @Override public AspectPropertyValue getAreas() { return getAs("areas", AspectPropertyValue.class, WktString.class); } /** * Autonomous System Number associated with the IP address. + * + * @see More information */ @SuppressWarnings("unchecked") @Override public AspectPropertyValue getAsn() { return getAs("asn", AspectPropertyValue.class, String.class); } /** * The name registered to the Asn associated with the IP address. + * + * @see More information */ @SuppressWarnings("unchecked") @Override