Package com.sun.appserv.management.config

Examples of com.sun.appserv.management.config.LogServiceConfig.removeProperty()


                LogServiceConfig lc = config.getLogServiceConfig();
                ArrayList removeProps = (ArrayList)handlerCtx.getInputValue("RemoveProps");
                Map addProps = (Map)handlerCtx.getInputValue("AddProps");
                String[] remove = (String[])removeProps.toArray(new String[ removeProps.size()]);
                for(int i=0; i<remove.length; i++){
                    lc.removeProperty(remove[i]);
                }
                if(addProps != null ){
                    Iterator additer = addProps.keySet().iterator();
                    while(additer.hasNext()){
                        Object key = additer.next();
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.