Package org.apache.tuscany.sca.factory

Examples of org.apache.tuscany.sca.factory.ObjectFactory


      List<ComponentProperty> props = component.getProperties();
      for ( ComponentProperty prop : props ) {
        if ( prop.getName().equals(name) ) {
          // On finding the property, create a factory for it and create a Bean using
          // the factory
          ObjectFactory factory = propertyFactory.createValueFactory( prop,
                                                                  prop.getValue(),
                                                                  requiredType );
          propertyObject = (B)factory.getInstance();
        } // end if
      } // end for
     
      return propertyObject;
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.factory.ObjectFactory

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.