Package org.rhq.core.util.obfuscation.ObfuscatedPreferences

Examples of org.rhq.core.util.obfuscation.ObfuscatedPreferences.Restricted


        }

        //Make an inventory of default restricted properties
        Set<String> restrictedPreferences = new HashSet<String>();
        for (Field field : AgentConfigurationConstants.class.getFields()) {
            Restricted restricted = field.getAnnotation(Restricted.class);
            if (restricted != null) {
                try {
                    String restrictedProperty = field.get(AgentConfigurationConstants.class).toString();
                    restrictedPreferences.add(restrictedProperty);
                } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.rhq.core.util.obfuscation.ObfuscatedPreferences.Restricted

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.