|
1 /* |
|
2 * ==================================================================== |
|
3 * Licensed to the Apache Software Foundation (ASF) under one |
|
4 * or more contributor license agreements. See the NOTICE file |
|
5 * distributed with this work for additional information |
|
6 * regarding copyright ownership. The ASF licenses this file |
|
7 * to you under the Apache License, Version 2.0 (the |
|
8 * "License"); you may not use this file except in compliance |
|
9 * with the License. You may obtain a copy of the License at |
|
10 * |
|
11 * http://www.apache.org/licenses/LICENSE-2.0 |
|
12 * |
|
13 * Unless required by applicable law or agreed to in writing, |
|
14 * software distributed under the License is distributed on an |
|
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
16 * KIND, either express or implied. See the License for the |
|
17 * specific language governing permissions and limitations |
|
18 * under the License. |
|
19 * ==================================================================== |
|
20 * |
|
21 * This software consists of voluntary contributions made by many |
|
22 * individuals on behalf of the Apache Software Foundation. For more |
|
23 * information on the Apache Software Foundation, please see |
|
24 * <http://www.apache.org/>. |
|
25 * |
|
26 */ |
|
27 |
|
28 package ch.boye.httpclientandroidlib.impl.cookie; |
|
29 |
|
30 import java.io.Serializable; |
|
31 import java.util.Date; |
|
32 |
|
33 import ch.boye.httpclientandroidlib.annotation.NotThreadSafe; |
|
34 |
|
35 import ch.boye.httpclientandroidlib.cookie.SetCookie2; |
|
36 |
|
37 /** |
|
38 * Default implementation of {@link SetCookie2}. |
|
39 * |
|
40 * @since 4.0 |
|
41 */ |
|
42 @NotThreadSafe |
|
43 public class BasicClientCookie2 extends BasicClientCookie implements SetCookie2, Serializable { |
|
44 |
|
45 private static final long serialVersionUID = -7744598295706617057L; |
|
46 |
|
47 private String commentURL; |
|
48 private int[] ports; |
|
49 private boolean discard; |
|
50 |
|
51 /** |
|
52 * Default Constructor taking a name and a value. The value may be null. |
|
53 * |
|
54 * @param name The name. |
|
55 * @param value The value. |
|
56 */ |
|
57 public BasicClientCookie2(final String name, final String value) { |
|
58 super(name, value); |
|
59 } |
|
60 |
|
61 @Override |
|
62 public int[] getPorts() { |
|
63 return this.ports; |
|
64 } |
|
65 |
|
66 public void setPorts(final int[] ports) { |
|
67 this.ports = ports; |
|
68 } |
|
69 |
|
70 @Override |
|
71 public String getCommentURL() { |
|
72 return this.commentURL; |
|
73 } |
|
74 |
|
75 public void setCommentURL(final String commentURL) { |
|
76 this.commentURL = commentURL; |
|
77 } |
|
78 |
|
79 public void setDiscard(boolean discard) { |
|
80 this.discard = discard; |
|
81 } |
|
82 |
|
83 @Override |
|
84 public boolean isPersistent() { |
|
85 return !this.discard && super.isPersistent(); |
|
86 } |
|
87 |
|
88 @Override |
|
89 public boolean isExpired(final Date date) { |
|
90 return this.discard || super.isExpired(date); |
|
91 } |
|
92 |
|
93 @Override |
|
94 public Object clone() throws CloneNotSupportedException { |
|
95 BasicClientCookie2 clone = (BasicClientCookie2) super.clone(); |
|
96 if (this.ports != null) { |
|
97 clone.ports = this.ports.clone(); |
|
98 } |
|
99 return clone; |
|
100 } |
|
101 |
|
102 } |
|
103 |