|
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; |