Package org.universa.tcc.gemda.entidade

Examples of org.universa.tcc.gemda.entidade.Pojo


    } else if (value.getClass().isArray()) {
      ListDecoratorWrapper<Object> wrapper = new ListDecoratorWrapper<Object>(decoratorClass, (List<Object>) value);
      value = wrapper.toArray();
    } else {
      String decoratorId = SpringContext.getConfigLocators().getDecoratorId(decoratorClass);
      Pojo decorator = (Pojo) SpringContext.getApplicationContext().getBean(decoratorId);
      BeanUtils.copyProperties(value, decorator);
      value = Utils.cglibProxy.criarProxy(decorator, DecoratorPojoAspect.class);
    }
    return value;
  }
View Full Code Here

TOP

Related Classes of org.universa.tcc.gemda.entidade.Pojo

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.