Java tutorial
/* * Artifactory is a binaries repository manager. * Copyright (C) 2012 JFrog Ltd. * * Artifactory is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Artifactory is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Artifactory. If not, see <http://www.gnu.org/licenses/>. */ package org.artifactory.version.converter.v130; import org.artifactory.version.converter.XmlConverter; import org.jdom2.Document; import org.jdom2.Element; import org.jdom2.Namespace; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * <pre> * Convert: * <anonAccessEnabled>XXX</anonAccessEnabled> * to: * <security> * <anonAccessEnabled>XXX</anonAccessEnabled> * ..... * </security> * </pre> * <p/> * anonAccessEnabled and security were not mandatory so need to check for nulls. Was valid until version 1.3.0 of the * schema. * * @author Yossi Shaul */ public class AnnonAccessUnderSecurityConverter implements XmlConverter { private static final Logger log = LoggerFactory.getLogger(AnnonAccessUnderSecurityConverter.class); @Override public void convert(Document doc) { Element root = doc.getRootElement(); Namespace ns = root.getNamespace(); Element annonAccess = root.getChild("anonAccessEnabled", ns); if (annonAccess == null) { log.debug("Element anonAccessEnabled not found"); return; } root.removeContent(annonAccess); Element security = root.getChild("security", ns); if (security == null) { security = new Element("security", ns); security.addContent(annonAccess); // serverName, anonAccessEnabled, fileUploadMaxSizeMb, dateFormat int location = findLastLocation(root, "serverName", "anonAccessEnabled", "fileUploadMaxSizeMb", "dateFormat"); root.addContent(location + 1, security); } else { security.addContent(0, annonAccess); } } private int findLastLocation(Element parent, String... elements) { for (int i = elements.length - 1; i >= 0; i--) { Element child = parent.getChild(elements[i], parent.getNamespace()); if (child != null) { return parent.indexOf(child); } } return -1; } }