Package com.typesafe.config
Interface ConfigIncluderURL
-
public interface ConfigIncluderURL
Implement this in addition toConfigIncluder
if you want to support inclusion of files with theinclude url("http://example.com")
syntax. If you do not implement this but do implementConfigIncluder
, attempts to load URLs will use the default includer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigObject
includeURL(ConfigIncludeContext context, java.net.URL what)
Parses another item to be included.
-
-
-
Method Detail
-
includeURL
ConfigObject includeURL(ConfigIncludeContext context, java.net.URL what)
Parses another item to be included. The returned object typically would not have substitutions resolved. You can throw a ConfigException here to abort parsing, or return an empty object, but may not return null.- Parameters:
context
- some info about the include contextwhat
- the include statement's argument- Returns:
- a non-null ConfigObject
-
-