View Javadoc
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.util.Date;
31  
32  import org.apache.http.cookie.SetCookie2;
33  
34  /**
35   * Default implementation of {@link SetCookie2}.
36   *
37   * @since 4.0
38   */
39  public class BasicClientCookie2 extends BasicClientCookie implements SetCookie2 {
40  
41      private static final long serialVersionUID = -7744598295706617057L;
42  
43      private String commentURL;
44      private int[] ports;
45      private boolean discard;
46  
47      /**
48       * Default Constructor taking a name and a value. The value may be null.
49       *
50       * @param name The name.
51       * @param value The value.
52       */
53      public BasicClientCookie2(final String name, final String value) {
54          super(name, value);
55      }
56  
57      @Override
58      public int[] getPorts() {
59          return this.ports;
60      }
61  
62      @Override
63      public void setPorts(final int[] ports) {
64          this.ports = ports;
65      }
66  
67      @Override
68      public String getCommentURL() {
69          return this.commentURL;
70      }
71  
72      @Override
73      public void setCommentURL(final String commentURL) {
74          this.commentURL = commentURL;
75      }
76  
77      @Override
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/../org/apache/http/impl/cookie/BasicClientCookie2.html#BasicClientCookie2">BasicClientCookie2 clone = (BasicClientCookie2) super.clone();
95          if (this.ports != null) {
96              clone.ports = this.ports.clone();
97          }
98          return clone;
99      }
100 
101 }
102