Package net.freedom.gj.beans.mapper

Examples of net.freedom.gj.beans.mapper.BeanMapperImpl


        //Simple factory, where no CDI capability available.
        MapperConfigurationBeanFactory factory = new MapperConfigurationBeanFactory();
        factory.add(fileConfig);
        factory.add(additionalConfig);

        BeanMapperImpl beanMapper = new BeanMapperImpl();
        beanMapper.setBeanFactory(factory);

        return beanMapper;
    }
View Full Code Here


        //Simple factory, suitable where no CDI capability available.
        MapperConfigurationBeanFactory factory = new MapperConfigurationBeanFactory();
        factory.add(fileConfig);
        factory.add(additionalConfig);

        BeanMapperImpl beanMapper = new BeanMapperImpl();
        beanMapper.setBeanFactory(factory);

        return beanMapper;
    }
View Full Code Here

       
    }
   
    @Provides @Singleton
    BeanMapper provideBeanMapper(Injector injector) throws Exception{
        BeanMapperImpl mapper = new BeanMapperImpl();
        GuiceTreeBeanFactory factory = new GuiceTreeBeanFactory();
        factory.setObjectType("net.freedom.gj.beans.config.MapperConfiguration");
        factory.setInjector(injector);
        mapper.setBeanFactory(factory);          
        factory.init();
       
      return mapper;
    }
View Full Code Here

TOP

Related Classes of net.freedom.gj.beans.mapper.BeanMapperImpl

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.