Package org.springframework.xd.module.options.spi

Examples of org.springframework.xd.module.options.spi.Mixin


   */
  private void createPojoOptionsMetadata(ClassLoader classLoaderToUse, String pojoClass,
      List<ModuleOptionsMetadata> mixins) {
    try {
      Class<?> clazz = Class.forName(pojoClass, true, classLoaderToUse);
      Mixin mixin = clazz.getAnnotation(Mixin.class);
      if (mixin != null) {
        for (Class<?> classToMixin : mixin.value()) {
          createPojoOptionsMetadata(classLoaderToUse, classToMixin.getName(), mixins);
        }
      }
      mixins.add(new PojoModuleOptionsMetadata(clazz, conversionService));
    }
View Full Code Here

TOP

Related Classes of org.springframework.xd.module.options.spi.Mixin

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.