NotThreadSafe
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@756309 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c7e53d6acc
commit
dd9e5e28ee
|
@ -36,6 +36,8 @@ import java.util.HashMap;
|
|||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
import net.jcip.annotations.NotThreadSafe;
|
||||
|
||||
import org.apache.http.cookie.ClientCookie;
|
||||
import org.apache.http.cookie.SetCookie;
|
||||
|
||||
|
@ -49,6 +51,7 @@ import org.apache.http.cookie.SetCookie;
|
|||
*
|
||||
* @since 4.0
|
||||
*/
|
||||
@NotThreadSafe
|
||||
public class BasicClientCookie implements SetCookie, ClientCookie, Cloneable {
|
||||
|
||||
/**
|
||||
|
|
|
@ -33,6 +33,8 @@ package org.apache.http.impl.cookie;
|
|||
|
||||
import java.util.Date;
|
||||
|
||||
import net.jcip.annotations.NotThreadSafe;
|
||||
|
||||
import org.apache.http.cookie.SetCookie2;
|
||||
|
||||
/**
|
||||
|
@ -43,6 +45,7 @@ import org.apache.http.cookie.SetCookie2;
|
|||
*
|
||||
* @since 4.0
|
||||
*/
|
||||
@NotThreadSafe
|
||||
public class BasicClientCookie2 extends BasicClientCookie implements SetCookie2 {
|
||||
|
||||
private String commentURL;
|
||||
|
|
Loading…
Reference in New Issue