return null;
}
public ProgressObject distribute(Target[] targetList, ConfigurationBuilder builder, InputStream in, XmlObject plan) throws IllegalStateException {
if (targetList.length != 1 || !target.equals(targetList[0])) {
return new FailedProgressObject(CommandType.DISTRIBUTE, "Invalid Target");
}
DistributeCommand command = new DistributeCommand(store, builder, in, plan);
new Thread(command).start();
return command;
}