blob: 446d70d0c4920707518fe2464f560fa46cd7d6ce [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2014 Code 9 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:
* Code 9 - initial API and implementation
* Rapicorp - ongoing enhancements
******************************************************************************/
package org.eclipse.equinox.p2.publisher.eclipse;
import java.util.Map;
import org.eclipse.equinox.frameworkadmin.BundleInfo;
import org.eclipse.equinox.internal.p2.core.helpers.CollectionUtils;
import org.eclipse.equinox.internal.provisional.frameworkadmin.ConfigData;
import org.eclipse.equinox.p2.publisher.AbstractAdvice;
public class ConfigAdvice extends AbstractAdvice implements IConfigAdvice {
private final ConfigData data;
private final String configSpec;
public ConfigAdvice(ConfigData data, String configSpec) {
this.data = data;
this.configSpec = configSpec;
}
public BundleInfo[] getBundles() {
return data.getBundles();
}
@Override
protected String getConfigSpec() {
return configSpec;
}
public Map<String, String> getProperties() {
return CollectionUtils.toMap(data.getProperties());
}
}