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