Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 410704
Collapse All | Expand All

(-)a/org.eclipse.mylyn.commons.repositories.core/META-INF/MANIFEST.MF (+1 lines)
Lines 13-15 Link Here
13
 org.eclipse.mylyn.commons.core
13
 org.eclipse.mylyn.commons.core
14
Bundle-ClassPath: .
14
Bundle-ClassPath: .
15
Bundle-Localization: plugin
15
Bundle-Localization: plugin
16
Import-Package: org.apache.http.client;version="4.1.3"
(-)a/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/commons/repositories/core/RepositoryLocation.java (+11 lines)
Lines 27-32 Link Here
27
import java.util.UUID;
27
import java.util.UUID;
28
import java.util.concurrent.CopyOnWriteArrayList;
28
import java.util.concurrent.CopyOnWriteArrayList;
29
29
30
import org.apache.http.client.CookieStore;
30
import org.eclipse.core.runtime.Assert;
31
import org.eclipse.core.runtime.Assert;
31
import org.eclipse.core.runtime.IProgressMonitor;
32
import org.eclipse.core.runtime.IProgressMonitor;
32
import org.eclipse.core.runtime.IStatus;
33
import org.eclipse.core.runtime.IStatus;
Lines 91-96 Link Here
91
	private ILocationService service;
92
	private ILocationService service;
92
93
93
	private final boolean workingCopy;
94
	private final boolean workingCopy;
95
96
	private CookieStore cookieStore;
94
97
95
	public RepositoryLocation() {
98
	public RepositoryLocation() {
96
		this(createDefaultProperties(), LocationService.getDefault(), false);
99
		this(createDefaultProperties(), LocationService.getDefault(), false);
Lines 430-435 Link Here
430
		return getLabel();
433
		return getLabel();
431
	}
434
	}
432
435
436
	public CookieStore getCookieStore() {
437
		return cookieStore;
438
	}
439
440
	public void setCookieStore(CookieStore cookieStore) {
441
		this.cookieStore = cookieStore;
442
	}
443
433
	private void handlePropertyChange(String key, Object old, Object value) {
444
	private void handlePropertyChange(String key, Object old, Object value) {
434
		if (PROPERTY_ID.equals(key)) {
445
		if (PROPERTY_ID.equals(key)) {
435
			credentialsStore = null;
446
			credentialsStore = null;

Return to bug 410704