src/org/sonews/feed/Subscription.java
author cli
Sun Aug 29 18:17:37 2010 +0200 (2010-08-29)
changeset 37 74139325d305
parent 35 ed84c8bdd87b
permissions -rw-r--r--
Switch intent style to Original K&R / Linux / Kernel.
     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 			Subscription sub = (Subscription) obj;
    48 			return sub.host.equals(host) && sub.group.equals(group)
    49 				&& sub.port == port && sub.feedtype == feedtype;
    50 		} else {
    51 			return false;
    52 		}
    53 	}
    54 
    55 	@Override
    56 	public int hashCode()
    57 	{
    58 		return host.hashCode() + port + feedtype + group.hashCode();
    59 	}
    60 
    61 	public int getFeedtype()
    62 	{
    63 		return feedtype;
    64 	}
    65 
    66 	public String getGroup()
    67 	{
    68 		return group;
    69 	}
    70 
    71 	public String getHost()
    72 	{
    73 		return host;
    74 	}
    75 
    76 	public int getPort()
    77 	{
    78 		return port;
    79 	}
    80 }