Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fdd62f2a243c04ffa3dc180d22d6058d0c8d53b5 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*******************************************************************************
 * Copyright (c) 2012 Wind River 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:
 *     Wind River - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.engine;

import java.util.EventObject;
import org.eclipse.equinox.p2.engine.ProvisioningContext;
import org.eclipse.equinox.p2.repository.artifact.IArtifactRepository;
import org.eclipse.equinox.p2.repository.artifact.IArtifactRequest;

public class CollectEvent extends EventObject {

	private static final long serialVersionUID = 5782796765127875200L;
	/**
	 * It means the overall collecting requests are started.
	 */
	public static final int TYPE_OVERALL_START = 1;
	/**
	 * It means the overall collecting requests are finished. 
	 */
	public static final int TYPE_OVERALL_END = 2;
	/**
	 * It means the collecting requests related to a special repository are started.
	 * See {@link CollectEvent#getRepository()}
	 */
	public static final int TYPE_REPOSITORY_START = 3;
	/**
	 * It means the collecting requests related to a special repository are end.
	 * See {@link CollectEvent#getRepository()} 
	 */
	public static final int TYPE_REPOSITORY_END = 4;

	private IArtifactRepository artifactRepo;
	private IArtifactRequest[] requests;

	private ProvisioningContext context;

	private int type;

	public CollectEvent(int type, IArtifactRepository artifactRepo, ProvisioningContext context, IArtifactRequest[] requests) {
		super(requests);
		this.type = type;
		this.artifactRepo = artifactRepo;
		this.context = context;
		this.requests = requests;
	}

	public int getType() {
		return type;
	}

	/**
	 * Return the associated repository if the downloading requests are related to a special repository
	 * @return the associated repository or <code>null</code> if the repository is unknown
	 */
	public IArtifactRepository getRepository() {
		return artifactRepo;
	}

	public IArtifactRequest[] getDownloadRequests() {
		return requests;
	}

	public ProvisioningContext getContext() {
		return context;
	}
}

Back to the top