@Incubating public interface IvyModuleMetadata
Modifier and Type | Method and Description |
---|---|
Map<String,String> |
getExtraInfo()
Returns a read-only map of the extra info declared in this descriptor.
|
Map<String,String> getExtraInfo()
The extra info is the set of all non-standard subelements of the info element. For each such element, the returned map contains one entry. The entry's key is the name (i.e. tag) of the element, including any namespace prefix. The entry's value is the contents of the element.
Example: Given an info element with the following non-standard subelements:
<info> <ns1:expires>2015-09-23</ns1:expires> <ns2:popularity>high</ns2:popularity> </info>
Then the returned map will be ["ns1:expires": "2015-09-23", "ns2:popularity": "high"]
.