Examples of RegistryLocationConfig


Examples of com.sun.appserv.management.config.RegistryLocationConfig

        Object webServiceKey = (Object)handlerCtx.getInputValue("WebServiceKey")
        Map registryConfigMap = getRegistryLocationConfigMap(webServiceKey);
        List dataList = new ArrayList();
        if (registryConfigMap != null && !registryConfigMap.isEmpty()) {
            for (Iterator iter = registryConfigMap.values().iterator(); iter.hasNext();) {
                RegistryLocationConfig registry = (RegistryLocationConfig)iter.next();
                Map registryMap = new HashMap();
                registryMap.put("RegistryName", registry.getConnectorResourceJNDIName());
                registryMap.put("selected", false);
                dataList.add(registryMap);
            }
        }
        handlerCtx.setOutputValue("WSPublishedRegistriesData", dataList);
View Full Code Here

Examples of com.sun.appserv.management.config.RegistryLocationConfig

            Map <String, RegistryLocationConfig> regMap =
                    wsec.getRegistryLocationConfigMap();
            prePublished = new String[regMap.size()];
            int i = 0;
            for (String regLoc : regMap.keySet()){
                RegistryLocationConfig rlc = regMap.get(regLoc);
                prePublished [i++] =
                        new String(rlc.getConnectorResourceJNDIName());
            }
        }
        return prePublished;
    }
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.