View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package org.eclipse.jetty.spdy.api;
20  
21  import java.util.concurrent.TimeUnit;
22  
23  /**
24   * A base class for all *Info classes providing timeout and unit and api to access them
25   */
26  public class Info
27  {
28      private final long timeout;
29      private final TimeUnit unit;
30  
31      public Info(long timeout, TimeUnit unit)
32      {
33          this.timeout = timeout;
34          this.unit = unit;
35      }
36  
37      public Info()
38      {
39          timeout = 0;
40          unit = TimeUnit.SECONDS;
41      }
42  
43      public long getTimeout()
44      {
45          return timeout;
46      }
47  
48      public TimeUnit getUnit()
49      {
50          return unit;
51      }
52  }