Example usage for org.springframework.data.gemfire.config.xml ParsingUtils getBeanReference

List of usage examples for org.springframework.data.gemfire.config.xml ParsingUtils getBeanReference

Introduction

In this page you can find the example usage for org.springframework.data.gemfire.config.xml ParsingUtils getBeanReference.

Prototype

static Object getBeanReference(Element element, ParserContext parserContext, String refAttributeName) 

Source Link

Usage

From source file:org.springframework.data.gemfire.config.xml.ParsingUtils.java

static Object parseRefOrNestedCustomElement(ParserContext parserContext, Element element,
        BeanDefinitionBuilder builder) {
    Object beanRef = ParsingUtils.getBeanReference(parserContext, element, "bean");
    return (beanRef != null ? beanRef
            : parserContext.getDelegate().parseCustomElement(element, builder.getBeanDefinition()));
}