* {@inheritDoc}
*/
@Override
public Double getDoubleValue(String attribute) throws ConfigurationException {
if (!pluginStore.strings.containsKey(attribute)) {
throw new AttributeNotFoundException(attribute);
}
String stringValue = pluginStore.strings.get(attribute);
if (stringValue == null) {
return null;
}