Package org.rat.free.security.makifx.base.clear

Examples of org.rat.free.security.makifx.base.clear.Readable


                    Iterator<String> keys = map_read.keySet().iterator();

                    while (keys.hasNext()) {

                        String plugin_id = keys.next();
                        Readable item = map_read.get(plugin_id);

                        log("importData - json - plugin_id: " + plugin_id);

                        EncryptedNode root_node = new EncryptedNode();
                        enc_map.getMap().put(plugin_id, root_node);

                        root_node.setId(item.getId());
                        root_node.setDescription(item.getDescription());
                        root_node.setProperties(new HashMap(item.getProperties()));

                        log("importData - json - root_node.getProperties: " + root_node.getProperties());

                        if (item.getChilds() != null && item.getChilds().size() > 0) {
                            for (Readable r : item.getChilds()) {
                                EncryptedNode node = new EncryptedNode();
                                root_node.addChild(node);

                                node.setId(r.getId());
                                node.setDescription(r.getDescription());
View Full Code Here

TOP

Related Classes of org.rat.free.security.makifx.base.clear.Readable

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.