Interface IpRangeParserConf
public interface IpRangeParserConf
This interface provides configuration methods for an IP range parser.
It defines accessors for various properties required to parse IP ranges
and interact with external resources.
-
Method Summary
Modifier and TypeMethodDescriptionorg.gradle.api.provider.Property<String> Retrieves the property representing the key used to request the database code for accessing resources.org.gradle.api.provider.Property<String> Retrieves the property representing the database code for IPv4-related resources.org.gradle.api.provider.Property<String> Retrieves the property representing the database code for IPv6-related resources.org.gradle.api.provider.Property<String> getToken()Retrieves the property representing the token required for accessing resources.org.gradle.api.provider.Property<String> Retrieves the property representing the key used to request the token for accessing resources.org.gradle.api.provider.Property<String> Retrieves the property representing the base URL for accessing resources.
-
Method Details
-
getToken
org.gradle.api.provider.Property<String> getToken()Retrieves the property representing the token required for accessing resources.- Returns:
- a Property containing the token as a String
-
getIpv4dbCode
org.gradle.api.provider.Property<String> getIpv4dbCode()Retrieves the property representing the database code for IPv4-related resources.- Returns:
- a Property containing the IPv4 database code as a String
-
getIpv6dbCode
org.gradle.api.provider.Property<String> getIpv6dbCode()Retrieves the property representing the database code for IPv6-related resources.- Returns:
- a Property containing the IPv6 database code as a String
-
getUrlBase
org.gradle.api.provider.Property<String> getUrlBase()Retrieves the property representing the base URL for accessing resources.- Returns:
- a Property containing the base URL as a String
-
getTokenRequestKey
org.gradle.api.provider.Property<String> getTokenRequestKey()Retrieves the property representing the key used to request the token for accessing resources.- Returns:
- a Property containing the token request key as a String
-
getDbCodeRequestKey
org.gradle.api.provider.Property<String> getDbCodeRequestKey()Retrieves the property representing the key used to request the database code for accessing resources.- Returns:
- a Property containing the database code request key as a String
-