Package net.sf.minuteProject.loader.mapping.node

Examples of net.sf.minuteProject.loader.mapping.node.BeanMapping


    return getTypeFromCallMappingObject(objectName, beanMapping, "TARGET");
  }
 
  public Bean getTypeFromCallMappingObject (String objectName, BeanMapping beanMapping, String direction) {
    BeanMap beanMap = beanMapping.getBeanMap();
    BeanMapping beanMappingCalled = getBeanMapping(objectName, beanMap);
    if (direction.equals("ORIGIN"))
      return mappingMapBeanUtils.getBean(beanMap, beanMappingCalled.getOriginBean())
    if (direction.equals("TARGET"))
      return mappingMapBeanUtils.getBean(beanMap, beanMappingCalled.getTargetBean()) ;
    return null;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.loader.mapping.node.BeanMapping

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.