if (node.getAttributes().getNamedItem(SPRING_NAME_ATTR) != null)
{
springName = node.getAttributes().getNamedItem(SPRING_NAME_ATTR).getNodeValue();
}
// get the interception type to use
InterceptionType interceptionType = null;
if (node.getAttributes().getNamedItem(INTERCEPT_TYPE_ATTR) != null)
{
interceptionType = InterceptionType.valueOf(node.getAttributes().getNamedItem(
INTERCEPT_TYPE_ATTR).getNodeValue());
}