Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 232714 Details for
Bug 410704
Support for CAS SSO
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Added CookieStore
Added-cookieStore.patch (text/plain), 1.81 KB, created by
Abhijit Gurav
on 2013-06-25 02:53:15 EDT
(
hide
)
Description:
Added CookieStore
Filename:
MIME Type:
Creator:
Abhijit Gurav
Created:
2013-06-25 02:53:15 EDT
Size:
1.81 KB
patch
obsolete
>diff --git a/org.eclipse.mylyn.commons.repositories.core/META-INF/MANIFEST.MF b/org.eclipse.mylyn.commons.repositories.core/META-INF/MANIFEST.MF >index 44663af..e5a15e2 100644 >--- a/org.eclipse.mylyn.commons.repositories.core/META-INF/MANIFEST.MF >+++ b/org.eclipse.mylyn.commons.repositories.core/META-INF/MANIFEST.MF >@@ -13,3 +13,4 @@ > org.eclipse.mylyn.commons.core > Bundle-ClassPath: . > Bundle-Localization: plugin >+Import-Package: org.apache.http.client;version="4.1.3" >diff --git a/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/commons/repositories/core/RepositoryLocation.java b/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/commons/repositories/core/RepositoryLocation.java >index 6db89d7..e90d710 100644 >--- a/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/commons/repositories/core/RepositoryLocation.java >+++ b/org.eclipse.mylyn.commons.repositories.core/src/org/eclipse/mylyn/commons/repositories/core/RepositoryLocation.java >@@ -27,6 +27,7 @@ > import java.util.UUID; > import java.util.concurrent.CopyOnWriteArrayList; > >+import org.apache.http.client.CookieStore; > import org.eclipse.core.runtime.Assert; > import org.eclipse.core.runtime.IProgressMonitor; > import org.eclipse.core.runtime.IStatus; >@@ -91,6 +92,8 @@ > private ILocationService service; > > private final boolean workingCopy; >+ >+ private CookieStore cookieStore; > > public RepositoryLocation() { > this(createDefaultProperties(), LocationService.getDefault(), false); >@@ -430,6 +433,14 @@ > return getLabel(); > } > >+ public CookieStore getCookieStore() { >+ return cookieStore; >+ } >+ >+ public void setCookieStore(CookieStore cookieStore) { >+ this.cookieStore = cookieStore; >+ } >+ > private void handlePropertyChange(String key, Object old, Object value) { > if (PROPERTY_ID.equals(key)) { > credentialsStore = null;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 410704
: 232714 |
232715