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.update.md.v130beta3; import org.artifactory.mime.MimeType; import org.artifactory.mime.NamingUtils; import org.artifactory.repo.RepoPath; import org.artifactory.update.md.MetadataConverter; import org.artifactory.update.md.MetadataConverterUtils; import org.artifactory.update.md.MetadataType; import org.jdom2.Document; import org.jdom2.Element; import java.util.List; /** * @author freds * @date Nov 9, 2008 */ public class ArtifactoryFileConverter implements MetadataConverter { public static final String ARTIFACTORY_FILE = "artifactory.file"; @Override public String getNewMetadataName() { return "artifactory-file"; } @Override public MetadataType getSupportedMetadataType() { return MetadataType.file; } @Override public void convert(Document doc) { Element rootElement = doc.getRootElement(); if (rootElement.getName().equals(getNewMetadataName())) { // Already done return; } rootElement.setName(getNewMetadataName()); RepoPath repoPath = MetadataConverterUtils.extractRepoPath(rootElement); List<Element> toMove = MetadataConverterUtils.extractExtensionFields(rootElement); MetadataConverterUtils.addNewContent(rootElement, repoPath, toMove); MimeType ct = NamingUtils.getMimeType(repoPath.getName()); rootElement.removeChild("mimeType"); rootElement.addContent(new Element("mimeType").setText(ct.getType())); } }