blob: 30a9e852bfec2d6a345c969d697a4d9dd5695754 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.jarprocessor.unsigner;
import java.io.File;
import java.util.List;
import java.util.Properties;
import org.eclipse.equinox.internal.p2.jarprocessor.SignCommandStep;
public class UnsignCommand extends SignCommandStep {
public UnsignCommand(Properties options, String command, boolean verbose) {
super(options, command, verbose);
}
public File postProcess(File input, File workingDirectory, List containers) {
if (command != null && input != null && shouldSign(input, containers)) {
execute(input);
}
return null;
}
private void execute(File input) {
Unsigner jarUnsigner = new Unsigner();
jarUnsigner.setJar(input);
jarUnsigner.setKeepManifestEntries(false);
jarUnsigner.execute();
}
}