Package com.ibm.websphere.ola
Class OLARGEList
- java.lang.Object
-
- com.ibm.websphere.ola.OLARGEList
-
- All Implemented Interfaces:
java.io.Serializable
public class OLARGEList extends java.lang.Object implements java.io.Serializable
A list of Optimized Local Adapter registrations.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OLARGEList(java.util.LinkedList<OLARGEInformation> registrations, OLARGEInformation serverRegistration, java.lang.String serverName)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object that)
Equality functionjava.util.LinkedList<OLARGEInformation>
get_registrations()
Obtains the list of registrationsjava.lang.String
get_serverName()
Returns the name of the server which owns the registrations returned in this list.OLARGEInformation
get_serverRGE()
Obtains the registration that represents the WebSphere Application Server which owns the registations returned in this list.int
hashCode()
Provides the hash code for this object
-
-
-
Constructor Detail
-
OLARGEList
public OLARGEList(java.util.LinkedList<OLARGEInformation> registrations, OLARGEInformation serverRegistration, java.lang.String serverName)
Constructor
-
-
Method Detail
-
get_serverRGE
public OLARGEInformation get_serverRGE()
Obtains the registration that represents the WebSphere Application Server which owns the registations returned in this list.- Returns:
- the server's registration object, or null if unavailable
-
get_serverName
public java.lang.String get_serverName()
Returns the name of the server which owns the registrations returned in this list.- Returns:
- the server name
-
get_registrations
public java.util.LinkedList<OLARGEInformation> get_registrations()
Obtains the list of registrations- Returns:
- The list of registrations
-
hashCode
public int hashCode()
Provides the hash code for this object- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- The hash code
-
equals
public boolean equals(java.lang.Object that)
Equality function- Overrides:
equals
in classjava.lang.Object
- Returns:
- true if equal, false if not
-
-