Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2008-10-09 01:09:36 +0000
committerPascal Rapicault2008-10-09 01:09:36 +0000
commitdf51a8f284e9a6f0dd5a5a21ef61fec5ed051713 (patch)
tree7e16c8418be691a1b8fadef1c89c30bd45e0d5af /bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository
parent9117b0f5520641153be476b02ae3d29a1255a110 (diff)
downloadrt.equinox.p2-df51a8f284e9a6f0dd5a5a21ef61fec5ed051713.tar.gz
rt.equinox.p2-df51a8f284e9a6f0dd5a5a21ef61fec5ed051713.tar.xz
rt.equinox.p2-df51a8f284e9a6f0dd5a5a21ef61fec5ed051713.zip
Bug 249996 - [artifact] MirrorApplication does not mirror properly
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository')
-rw-r--r--bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository/IArtifactRepository.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository/IArtifactRepository.java b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository/IArtifactRepository.java
index c96d33af4..ca9360530 100644
--- a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository/IArtifactRepository.java
+++ b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/provisional/p2/artifact/repository/IArtifactRepository.java
@@ -69,6 +69,11 @@ public interface IArtifactRepository extends IRepository {
public IStatus getArtifact(IArtifactDescriptor descriptor, OutputStream destination, IProgressMonitor monitor);
/**
+ * Write to the given output stream the bytes represented by the artifact descriptor without processing by the steps of the given descriptor.
+ */
+ public IStatus getRawArtifact(IArtifactDescriptor descriptor, OutputStream destination, IProgressMonitor monitor);
+
+ /**
* Return the set of artifact descriptors describing the ways that this repository
* can supply the artifact associated with the given artifact key
* @param key the artifact key to lookup

Back to the top