ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/FilterServant.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/filter/FilterServant.java (file contents):
Revision 1.18 by tdb, Tue May 29 17:02:35 2001 UTC vs.
Revision 1.23 by tdb, Sun Aug 1 10:40:58 2004 UTC

# Line 1 | Line 1
1 + /*
2 + * i-scream central monitoring system
3 + * http://www.i-scream.org
4 + * Copyright (C) 2000-2002 i-scream
5 + *
6 + * This program is free software; you can redistribute it and/or
7 + * modify it under the terms of the GNU General Public License
8 + * as published by the Free Software Foundation; either version 2
9 + * of the License, or (at your option) any later version.
10 + *
11 + * This program is distributed in the hope that it will be useful,
12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 + * GNU General Public License for more details.
15 + *
16 + * You should have received a copy of the GNU General Public License
17 + * along with this program; if not, write to the Free Software
18 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 + */
20 +
21   //---PACKAGE DECLARATION---
22   package uk.org.iscream.cms.server.filter;
23  
# Line 5 | Line 25 | package uk.org.iscream.cms.server.filter;
25   import uk.org.iscream.cms.server.core.*;
26   import uk.org.iscream.cms.server.componentmanager.*;
27   import uk.org.iscream.cms.server.filter.*;
28 < import uk.org.iscream.cms.server.util.*;
28 > import uk.org.iscream.cms.util.*;
29   import java.net.InetAddress;
30  
31   /**
# Line 30 | Line 50 | class FilterServant extends FilterPOA {
50      /**
51       * Creates a new FilterServant.
52       *
33     * @param TCPListenPort the TCP port this filter is listening on
34     * @param UDPListenPort the UDP port this filter is listening on
53       * @param queue the Queue this filter is using
54       */
55 <    public FilterServant(int TCPListenPort, int UDPListenPort, Queue queue) {
38 <        _TCPListenPort = TCPListenPort;
39 <        _UDPListenPort = UDPListenPort;
55 >    public FilterServant(Queue queue) {
56          _queue = queue;
57          _logger.write(toString(), Logger.SYSINIT, "started");
58      }
# Line 56 | Line 72 | class FilterServant extends FilterPOA {
72       * Overrides the {@link java.lang.Object#toString() Object.toString()}
73       * method to provide clean logging (every class should have this).
74       *
75 <     * This uses the uk.org.iscream.cms.server.util.NameFormat class
75 >     * This uses the uk.org.iscream.cms.util.NameFormat class
76       * to format the toString()
77       *
78       * @return the name of this class and its CVS revision
# Line 72 | Line 88 | class FilterServant extends FilterPOA {
88  
89   //---ACCESSOR/MUTATOR METHODS---
90  
75    /**
76     * Provides information to the FilterManager
77     */
78    public String getUDPPort() {
79        return new Integer(_UDPListenPort).toString();
80    }
81    
82    /**
83     * Provides information to the FilterManager
84     */
85    public String getTCPPort() {
86        return new Integer(_TCPListenPort).toString();
87    }
88    
89    /**
90     * Provides information to the FilterManager
91     */
92    public String getHostName() {
93        try {
94            // hacky fix for windows boxes, where getHostName() returns the NetBIOS name !
95            return InetAddress.getByName(InetAddress.getLocalHost().getHostAddress()).getHostName();
96        } catch (java.net.UnknownHostException e) {
97            _logger.write(toString(), Logger.ERROR, e.getMessage());
98        }
99        return null;
100    }
101
102
91   //---ATTRIBUTES---
92  
93      /**
# Line 123 | Line 111 | class FilterServant extends FilterPOA {
111       * Our Queue object
112       */
113      private Queue _queue;
126    
127    /**
128     * The UDP port we're listening on
129     */
130    private int _UDPListenPort;
131    
132    /**
133     * The TCP port we're listening on
134     */
135    private int _TCPListenPort;
114      
115   //---STATIC ATTRIBUTES---
116  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines