Interface ExternalResourceInfo
-
@PublicEvolving public interface ExternalResourceInfoContains the information of an external resource.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>getKeys()Get all property keys.Optional<String>getProperty(String key)Get the property indicated by the specified key.
-
-
-
Method Detail
-
getProperty
Optional<String> getProperty(String key)
Get the property indicated by the specified key.- Parameters:
key- of the required property- Returns:
- an
Optionalcontaining the value associated to the key, or an emptyOptionalif no value has been stored under the given key
-
getKeys
Collection<String> getKeys()
Get all property keys.- Returns:
- collection of all property keys
-
-