Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6c5ef15d2c9b25d33e1359c3c5f0d9f16e48a9a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * 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 Corporation - ongoing enhancements
 ******************************************************************************/
package org.eclipse.equinox.p2.publisher.eclipse;

import java.util.List;
import java.util.Map;
import org.eclipse.equinox.frameworkadmin.BundleInfo;
import org.eclipse.equinox.p2.publisher.IPublisherAdvice;
import org.eclipse.equinox.p2.repository.IRepositoryReference;

public interface IConfigAdvice extends IPublisherAdvice {

	public BundleInfo[] getBundles();

	public Map<String, String> getProperties();

	public List<IRepositoryReference> getUpdateRepositories();
}

Back to the top