Package org.springframework.beans.factory.config

Examples of org.springframework.beans.factory.config.RuntimeBeanNameReference


    }
    if (!StringUtils.hasText(refName)) {
      error("<idref> element contains empty target attribute", ele);
      return null;
    }
    RuntimeBeanNameReference ref = new RuntimeBeanNameReference(refName);
    ref.setSource(extractSource(ele));
    return ref;
  }
View Full Code Here


        MutablePropertyValues factoryPropertyValues = new MutablePropertyValues();
        factoryBean.setPropertyValues(factoryPropertyValues);
       
        String environmentBean = element.getAttribute("environment");
        if (environmentBean != null && !environmentBean.isEmpty()) {
            factoryPropertyValues.addPropertyValue("environment", new RuntimeBeanNameReference(environmentBean));
        }

        Element contextProvidersElement = DomUtils.getChildElementByTagName(element, "context-providers");
        if (contextProvidersElement != null) {
            List contextProvidersList = parserContext.getDelegate().parseListElement(contextProvidersElement, factoryBean);
View Full Code Here

      parserContext.getReaderContext().error(
          "'advice-ref' attribute contains empty value.", advisorElement, this.parseState.snapshot());
    }
    else {
      advisorDefinition.getPropertyValues().addPropertyValue(
          ADVICE_BEAN_NAME, new RuntimeBeanNameReference(adviceRef));
    }

    if (advisorElement.hasAttribute(ORDER_PROPERTY)) {
      advisorDefinition.getPropertyValues().addPropertyValue(
          ORDER_PROPERTY, advisorElement.getAttribute(ORDER_PROPERTY));
View Full Code Here

    }
    if (!StringUtils.hasText(refName)) {
      error("<idref> element contains empty target attribute", ele);
      return null;
    }
    RuntimeBeanNameReference ref = new RuntimeBeanNameReference(refName);
    ref.setSource(extractSource(ele));
    return ref;
  }
View Full Code Here

    }
    if (!StringUtils.hasText(refName)) {
      error("<idref> element contains empty target attribute", ele);
      return null;
    }
    RuntimeBeanNameReference ref = new RuntimeBeanNameReference(refName);
    ref.setSource(extractSource(ele));
    return ref;
  }
View Full Code Here

    }
    if (!StringUtils.hasText(refName)) {
      error("<idref> element contains empty target attribute", ele);
      return null;
    }
    RuntimeBeanNameReference ref = new RuntimeBeanNameReference(refName);
    ref.setSource(extractSource(ele));
    return ref;
  }
View Full Code Here

      parserContext.getReaderContext().error(
          "'advice-ref' attribute contains empty value.", advisorElement, this.parseState.snapshot());
    }
    else {
      advisorDefinition.getPropertyValues().add(
          ADVICE_BEAN_NAME, new RuntimeBeanNameReference(adviceRef));
    }

    if (advisorElement.hasAttribute(ORDER_PROPERTY)) {
      advisorDefinition.getPropertyValues().add(
          ORDER_PROPERTY, advisorElement.getAttribute(ORDER_PROPERTY));
View Full Code Here

      }
      if (!StringUtils.hasText(refName)) {
        error("<idref> element contains empty target attribute", ele);
        return null;
      }
      RuntimeBeanNameReference ref = new RuntimeBeanNameReference(refName);
      ref.setSource(extractSource(ele));
      return ref;
    }
    else if (DomUtils.nodeNameEquals(ele, VALUE_ELEMENT)) {
      // It's a literal value.
      String value = DomUtils.getTextValue(ele);
View Full Code Here

      parserContext.getReaderContext().error(
          "'advice-ref' attribute contains empty value.", advisorElement, this.parseState.snapshot());
    }
    else {
      advisorDefinition.getPropertyValues().addPropertyValue(
          ADVICE_BEAN_NAME, new RuntimeBeanNameReference(adviceRef));
    }

    if (advisorElement.hasAttribute(ORDER_PROPERTY)) {
      advisorDefinition.getPropertyValues().addPropertyValue(
          ORDER_PROPERTY, advisorElement.getAttribute(ORDER_PROPERTY));
View Full Code Here

      }
      if (!StringUtils.hasText(refName)) {
        error("<idref> element contains empty target attribute", ele);
        return null;
      }
      RuntimeBeanNameReference ref = new RuntimeBeanNameReference(refName);
      ref.setSource(extractSource(ele));
      return ref;
    }
    else if (DomUtils.nodeNameEquals(ele, VALUE_ELEMENT)) {
      // It's a literal value.
      String value = DomUtils.getTextValue(ele);
View Full Code Here

TOP

Related Classes of org.springframework.beans.factory.config.RuntimeBeanNameReference

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.