Package com.proofpoint.configuration.ConfigurationMetadata

Examples of com.proofpoint.configuration.ConfigurationMetadata.InjectionPointMetaData


        }

        if (!isDefault) {
            problems.throwIfHasErrors();

            InjectionPointMetaData injectionPoint = operativeInjectionData.operativeInjectionPoint;
            if (injectionPoint != null) {
                if (injectionPoint.getSetter().isAnnotationPresent(Deprecated.class)) {
                    problems.addWarning("Configuration property '%s' is deprecated and should not be used", prefix + injectionPoint.getProperty());
                }

                return injectionPoint;
            }
        }
View Full Code Here

TOP

Related Classes of com.proofpoint.configuration.ConfigurationMetadata.InjectionPointMetaData

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.