~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to src/main/org/jboss/remoting/network/NetworkInstance.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* JBoss, Home of Professional Open Source
 
3
* Copyright 2005, JBoss Inc., and individual contributors as indicated
 
4
* by the @authors tag. See the copyright.txt in the distribution for a
 
5
* full listing of individual contributors.
 
6
*
 
7
* This is free software; you can redistribute it and/or modify it
 
8
* under the terms of the GNU Lesser General Public License as
 
9
* published by the Free Software Foundation; either version 2.1 of
 
10
* the License, or (at your option) any later version.
 
11
*
 
12
* This software is distributed in the hope that it will be useful,
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
15
* Lesser General Public License for more details.
 
16
*
 
17
* You should have received a copy of the GNU Lesser General Public
 
18
* License along with this software; if not, write to the Free
 
19
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 
20
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 
21
*/
 
22
 
 
23
package org.jboss.remoting.network;
 
24
 
 
25
import java.io.Serializable;
 
26
import org.jboss.remoting.InvokerLocator;
 
27
import org.jboss.remoting.detection.ServerInvokerMetadata;
 
28
import org.jboss.remoting.ident.Identity;
 
29
 
 
30
/**
 
31
 * NetworkInstance is an object that represents an Identity and its InvokerLocators.
 
32
 *
 
33
 * @author <a href="mailto:jhaynie@vocalocity.net">Jeff Haynie</a>
 
34
 * @version $Revision: 566 $
 
35
 */
 
36
public class NetworkInstance implements Serializable
 
37
{
 
38
   static final long serialVersionUID = -1745108606611832280L;
 
39
 
 
40
   private final Identity identity;
 
41
   private final ServerInvokerMetadata serverInvokers[];
 
42
   private final InvokerLocator locators[];
 
43
   private final int hashCode;
 
44
 
 
45
   public NetworkInstance(Identity identity, InvokerLocator locators[])
 
46
   {
 
47
      this.identity = identity;
 
48
      this.locators = locators;
 
49
      this.hashCode = this.identity.hashCode();
 
50
      this.serverInvokers = null;
 
51
   }
 
52
 
 
53
   public NetworkInstance(Identity identity, ServerInvokerMetadata serverInvokers[])
 
54
   {
 
55
      this.identity = identity;
 
56
      this.locators = null;
 
57
      this.hashCode = this.identity.hashCode();
 
58
      this.serverInvokers = serverInvokers;
 
59
   }
 
60
 
 
61
   public final Identity getIdentity()
 
62
   {
 
63
      return identity;
 
64
   }
 
65
 
 
66
   public final InvokerLocator[] getLocators()
 
67
   {
 
68
      if(locators != null)
 
69
      {
 
70
         return locators;
 
71
      }
 
72
      else
 
73
      {
 
74
         InvokerLocator[] locators = new InvokerLocator[serverInvokers.length];
 
75
         for(int x = 0; x < serverInvokers.length; x++)
 
76
         {
 
77
            locators[x] = serverInvokers[x].getInvokerLocator();
 
78
         }
 
79
         return locators;
 
80
      }
 
81
 
 
82
   }
 
83
 
 
84
   /**
 
85
    * Gets all the server invoker metadata for the servers running on
 
86
    * specified server.  Will include locator and supported subsystems
 
87
    * for that locator.
 
88
    *
 
89
    * @return
 
90
    */
 
91
   public final ServerInvokerMetadata[] getServerInvokers()
 
92
   {
 
93
      return serverInvokers;
 
94
   }
 
95
 
 
96
 
 
97
   public String toString()
 
98
   {
 
99
      return "NetworkInstance [identity:" + identity + ",locator count:" + (serverInvokers == null ? 0 : serverInvokers.length) + "]";
 
100
   }
 
101
 
 
102
   public boolean equals(Object obj)
 
103
   {
 
104
      return hashCode == obj.hashCode();
 
105
   }
 
106
 
 
107
   public int hashCode()
 
108
   {
 
109
      return hashCode;
 
110
   }
 
111
}