src/org/sonews/feed/Subscription.java
author cli
Sun Aug 29 17:28:58 2010 +0200 (2010-08-29)
changeset 35 ed84c8bdd87b
parent 22 org/sonews/feed/Subscription.java@2541bdb54cb2
child 37 74139325d305
permissions -rw-r--r--
Moving source files into src/-subdir.
     1 /*
     2  *   SONEWS News Server
     3  *   see AUTHORS for the list of contributors
     4  *
     5  *   This program is free software: you can redistribute it and/or modify
     6  *   it under the terms of the GNU General Public License as published by
     7  *   the Free Software Foundation, either version 3 of the License, or
     8  *   (at your option) any later version.
     9  *
    10  *   This program is distributed in the hope that it will be useful,
    11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    13  *   GNU General Public License for more details.
    14  *
    15  *   You should have received a copy of the GNU General Public License
    16  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 
    19 package org.sonews.feed;
    20 
    21 /**
    22  * For every group that is synchronized with or from a remote newsserver 
    23  * a Subscription instance exists.
    24  * @author Christian Lins
    25  * @since sonews/0.5.0
    26  */
    27 public class Subscription 
    28 {
    29 
    30   private String host;
    31   private int    port;
    32   private int    feedtype;
    33   private String group;
    34   
    35   public Subscription(String host, int port, int feedtype, String group)
    36   {
    37     this.host     = host;
    38     this.port     = port;
    39     this.feedtype = feedtype;
    40     this.group    = group;
    41   }
    42 
    43   @Override
    44   public boolean equals(Object obj)
    45   {
    46     if(obj instanceof Subscription)
    47     {
    48       Subscription sub = (Subscription)obj;
    49       return sub.host.equals(host) && sub.group.equals(group) 
    50         && sub.port == port && sub.feedtype == feedtype;
    51     }
    52     else
    53     {
    54       return false;
    55     }
    56   }
    57 
    58   @Override
    59   public int hashCode()
    60   {
    61     return host.hashCode() + port + feedtype + group.hashCode();
    62   }
    63 
    64   public int getFeedtype()
    65   {
    66     return feedtype;
    67   }
    68 
    69   public String getGroup()
    70   {
    71     return group;
    72   }
    73 
    74   public String getHost()
    75   {
    76     return host;
    77   }
    78 
    79   public int getPort()
    80   {
    81     return port;
    82   }
    83   
    84 }