SSLConfigValue value = SSLConfigValue.fromValue(attrValue);
if (value == null)
throw JacORBMessages.MESSAGES.invalidSSLConfig(attrValue, reader.getLocation());
attrValue = value.toString();
default:
SimpleAttributeDefinition definition = ((SimpleAttributeDefinition) JacORBSubsystemDefinitions.
valueOf(attribute.getLocalName()));
// a null definition represents an attribute that has been deprecated and is no longer used.
if (definition != null)
definition.parseAndSetParameter(attrValue, node, reader);
}
}
// the security element doesn't have child elements.
requireNoContent(reader);