Package org.axonframework.common.annotation

Examples of org.axonframework.common.annotation.MetaData


        for (int i = 0; i < parameterAnnotations.length; i++) {
            if (org.axonframework.domain.MetaData.class.isAssignableFrom(parameterTypes[i])) {
                extractors.add(new MetaDataExtractor(i, null));
            } else {
                Annotation[] annotations = parameterAnnotations[i];
                final MetaData metaDataAnnotation = CollectionUtils.getAnnotation(annotations, MetaData.class);
                if (metaDataAnnotation != null) {
                    extractors.add(new MetaDataExtractor(i, metaDataAnnotation.value()));
                }
            }
        }
        return extractors.toArray(new MetaDataExtractor[extractors.size()]);
    }
View Full Code Here

TOP

Related Classes of org.axonframework.common.annotation.MetaData

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.