blob: 1a9cec38dafddbb74c3d2160047351223c347a0f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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
******************************************************************************/
package org.eclipse.equinox.p2.publisher;
import java.util.Collection;
import org.eclipse.equinox.internal.provisional.p2.artifact.repository.IArtifactRepository;
import org.eclipse.equinox.internal.provisional.p2.metadata.repository.IMetadataRepository;
import org.osgi.framework.Version;
public interface IPublisherInfo {
/**
* A bitwise flag to say whether or not the index for the artifact repository should
* be updated.
*/
public static final int A_INDEX = 1;
/**
* A bitwise flag to say whether or the artifacts themselves should be published.
*/
public static final int A_PUBLISH = 2;
/**
* A bitwise flag to say whether or not to overwrite disk content discovered
* in the repository when publishing an artifact
*/
public static final int A_OVERWRITE = 4;
/**
* Returns the artifact repository into which any publishable artifacts are published
* or <code>null</code> if none.
* @return a destination artifact repository or <code>null</code>
*/
public IArtifactRepository getArtifactRepository();
/**
* Returns the metadata repository into which any publishable metadata is published
* or <code>null</code> if none.
* @return a destination metadata repository or <code>null</code>
*/
public IMetadataRepository getMetadataRepository();
/**
* Returns whether or not artifacts themselves should be published.
* @return <code>true</code> if artifacts should be published.
* <code>false</code> otherwise.
*/
public int getArtifactOptions();
/**
* Returns the registered advice for the given configuration of WS, OS and ARCH where the
* advice is of the given type. If mergeDefault is <code>true</code> then the advice for
* the default configuration is merged into the result.
* @param configSpec the configuration to query. Note that the given configuration
* must specify values for WS, OS and ARCH.
* @param type the type of advice to look for
* @param includeDefault whether or not to merge in the advice common to all configurations
* @return the set of advice of the given type for the given configuration
*/
public Collection getAdvice(String configSpec, boolean includeDefault, String id, Version version, Class type);
/**
* Add the given advice to the set of publishing advices.
* @param advice the advice to retain
*/
public void addAdvice(IPublisherAdvice advice);
public String[] getConfigurations();
}