Package com.netflix.governator.annotations

Examples of com.netflix.governator.annotations.Modules.exclude()


       
        private List<Class<? extends Module>> getExcludeList() {
            Builder<Class<? extends Module>> builder = ImmutableList.<Class<? extends Module>>builder();
            if (type != null) {
                Modules annot = type.getAnnotation(Modules.class);
                if (annot != null && annot.exclude() != null) {
                    builder.add(annot.exclude());
                }
            }
            return builder.build();
        }
View Full Code Here


        private List<Class<? extends Module>> getExcludeList() {
            Builder<Class<? extends Module>> builder = ImmutableList.<Class<? extends Module>>builder();
            if (type != null) {
                Modules annot = type.getAnnotation(Modules.class);
                if (annot != null && annot.exclude() != null) {
                    builder.add(annot.exclude());
                }
            }
            return builder.build();
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.