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 org.apache.http.impl.cookie;
29
30 import java.io.Serializable;
31 import java.util.Date;
32
33 import org.apache.http.annotation.NotThreadSafe;
34 import org.apache.http.cookie.SetCookie2;
35
36 /**
37 * Default implementation of {@link SetCookie2}.
38 *
39 * @since 4.0
40 */
41 @NotThreadSafe
42 public class BasicClientCookie2 extends BasicClientCookie implements SetCookie2, Serializable {
43
44 private static final long serialVersionUID = -7744598295706617057L;
45
46 private String commentURL;
47 private int[] ports;
48 private boolean discard;
49
50 /**
51 * Default Constructor taking a name and a value. The value may be null.
52 *
53 * @param name The name.
54 * @param value The value.
55 */
56 public BasicClientCookie2(final String name, final String value) {
57 super(name, value);
58 }
59
60 @Override
61 public int[] getPorts() {
62 return this.ports;
63 }
64
65 public void setPorts(final int[] ports) {
66 this.ports = ports;
67 }
68
69 @Override
70 public String getCommentURL() {
71 return this.commentURL;
72 }
73
74 public void setCommentURL(final String commentURL) {
75 this.commentURL = commentURL;
76 }
77
78 public void setDiscard(final boolean discard) {
79 this.discard = discard;
80 }
81
82 @Override
83 public boolean isPersistent() {
84 return !this.discard && super.isPersistent();
85 }
86
87 @Override
88 public boolean isExpired(final Date date) {
89 return this.discard || super.isExpired(date);
90 }
91
92 @Override
93 public Object clone() throws CloneNotSupportedException {
94 final BasicClientCookie2 clone = (BasicClientCookie2) super.clone();
95 if (this.ports != null) {
96 clone.ports = this.ports.clone();
97 }
98 return clone;
99 }
100
101 }
102