com.ibm.as400.vaccess
Class VSystemStatus

java.lang.Object
  extended by com.ibm.as400.vaccess.VSystemStatus
All Implemented Interfaces:
VNode, VObject, Serializable, TreeNode

Deprecated. Use Java Swing instead, along with the classes in package com.ibm.as400.access

public class VSystemStatus
extends Object
implements VNode, Serializable

The VSystemStatus class defines the representation of system status on a system for use in various models and panes in this package. The method load() must be explicitly called to load the information from the system.

Most errors are reported as ErrorEvents rather than throwing exceptions. Users should listen for ErrorEvents in order to diagnose and recover from error conditions.

VSystemStatus objects generate the following events:

See Also:
Serialized Form

Field Summary
Modifier and Type Field and Description
 
Fields inherited from interface com.ibm.as400.vaccess.VObject
DESCRIPTION_PROPERTY, NAME_PROPERTY
 
Constructor Summary
Constructor and Description
VSystemStatus()
          Deprecated. Constructs a VSystemStatus object.
VSystemStatus(AS400 system)
          Deprecated. Constructs a VSystemStatus object.
VSystemStatus(SystemStatus systemStatus)
          Deprecated. Constructs a VSystemStatus object.
VSystemStatus(VNode parent, AS400 system)
          Deprecated. Constructs a VSystemStatus object.
 
Method Summary
Modifier and Type Method and Description
 void addErrorListener(ErrorListener listener)
          Deprecated. Adds a listener to be notified when an error occurs.
 void addPropertyChangeListener(PropertyChangeListener listener)
          Deprecated. Adds a listener to be notified when the value of any bound property changes.
 void addVetoableChangeListener(VetoableChangeListener listener)
          Deprecated. Adds a listener to be notified when the value of any constrained property changes.
 void addVObjectListener(VObjectListener listener)
          Deprecated. Adds a listener to be notified when a VObject is changed, created, or deleted.
 void addWorkingListener(WorkingListener listener)
          Deprecated. Adds a listener to be notified when work starts and stops on potentially long-running operations.
 Enumeration children()
          Deprecated. Returns the children of the node.
 VAction[] getActions()
          Deprecated. Returns the list of actions that can be performed.
 boolean getAllowsChildren()
          Deprecated. Indicates if the node allows children.
 TreeNode getChildAt(int index)
          Deprecated. Returns the child node at the specified index.
 int getChildCount()
          Deprecated. Returns the number of children.
 VAction getDefaultAction()
          Deprecated. Returns the default action.
 VObject getDetailsChildAt(int index)
          Deprecated. Returns the child for the details at the specified index.
 int getDetailsChildCount()
          Deprecated. Returns the number of children for the details.
 TableColumnModel getDetailsColumnModel()
          Deprecated. Returns the table column model to use in the details when representing the children.
 int getDetailsIndex(VObject detailsChild)
          Deprecated. Returns the index of the specified child for the details.
 Icon getIcon(int size, boolean open)
          Deprecated. Returns the icon.
 int getIndex(TreeNode child)
          Deprecated. Returns the index of the specified child.
 TreeNode getParent()
          Deprecated. Returns the parent node.
 VPropertiesPane getPropertiesPane()
          Deprecated. Returns the properties pane.
 Object getPropertyValue(Object object)
          Deprecated. Returns a property value.
 AS400 getSystem()
          Deprecated. Returns the system in which the system status information resides.
 String getText()
          Deprecated. Returns the description text.
 boolean isAllowModifyAllPools()
          Deprecated. Return true if the modify action to all system pools is allowed, otherwise false.
 boolean isLeaf()
          Deprecated. Indicates if the node is a leaf.
 boolean isSortable()
          Deprecated. Indicates if the details children are sortable.
 void load()
          Deprecated. Loads information about the object from the system.
 void removeErrorListener(ErrorListener listener)
          Deprecated. Removes an error listener.
 void removePropertyChangeListener(PropertyChangeListener listener)
          Deprecated. Removes a property change listener.
 void removeVetoableChangeListener(VetoableChangeListener listener)
          Deprecated. Removes a vetoable change listener.
 void removeVObjectListener(VObjectListener listener)
          Deprecated. Removes a VObjectListener.
 void removeWorkingListener(WorkingListener listener)
          Deprecated. Removes a working listener.
 void setAllowModifyAllPools(boolean allow)
          Deprecated. Set the state of modify action of all the pools.
 void setSystem(AS400 system)
          Deprecated. Sets the system in which the system status information resides.
 void sortDetailsChildren(Object[] propertyIdentifiers, boolean[] orders)
          Deprecated. Sorts the children for the details.
 String toString()
          Deprecated. Returns the string representation of the description.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VSystemStatus

public VSystemStatus()
              throws AS400Exception,
                     AS400SecurityException,
                     ConnectionDroppedException,
                     ErrorCompletingRequestException,
                     InterruptedException,
                     ObjectDoesNotExistException,
                     IOException,
                     UnsupportedEncodingException,
                     PropertyVetoException
Deprecated. 
Constructs a VSystemStatus object.

Throws:
AS400Exception - If the system returns an error message.
AS400SecurityException - If a security or authority error occurs.
ConnectionDroppedException - If the connection is dropped unexpectedly.
ErrorCompletingRequestException - If an error occurs before the request is completed.
InterruptedException - If this thread is interrupted.
IOException - If an error occurs while communicating with the system.
ObjectDoesNotExistException - If the system object does not exist.
PropertyVetoException - If the change is vetoed.
UnsupportedEncodingException - If the character encoding is not supported.

VSystemStatus

public VSystemStatus(AS400 system)
              throws AS400Exception,
                     AS400SecurityException,
                     ConnectionDroppedException,
                     ErrorCompletingRequestException,
                     InterruptedException,
                     ObjectDoesNotExistException,
                     IOException,
                     UnsupportedEncodingException,
                     PropertyVetoException
Deprecated. 
Constructs a VSystemStatus object.

Parameters:
system - The system in which the system status information resides.
Throws:
AS400Exception - If the system returns an error message.
AS400SecurityException - If a security or authority error occurs.
ConnectionDroppedException - If the connection is dropped unexpectedly.
ErrorCompletingRequestException - If an error occurs before the request is completed.
InterruptedException - If this thread is interrupted.
IOException - If an error occurs while communicating with the system.
ObjectDoesNotExistException - If the system object does not exist.
PropertyVetoException - If the change is vetoed.
UnsupportedEncodingException - If the character encoding is not supported.

VSystemStatus

public VSystemStatus(SystemStatus systemStatus)
              throws AS400Exception,
                     AS400SecurityException,
                     ConnectionDroppedException,
                     ErrorCompletingRequestException,
                     InterruptedException,
                     ObjectDoesNotExistException,
                     IOException,
                     UnsupportedEncodingException,
                     PropertyVetoException
Deprecated. 
Constructs a VSystemStatus object.

Parameters:
systemStatus - The underlying system status object.
Throws:
AS400Exception - If the system returns an error message.
AS400SecurityException - If a security or authority error occurs.
ConnectionDroppedException - If the connection is dropped unexpectedly.
ErrorCompletingRequestException - If an error occurs before the request is completed.
InterruptedException - If this thread is interrupted.
IOException - If an error occurs while communicating with the system.
ObjectDoesNotExistException - If the system object does not exist.
PropertyVetoException - If the change is vetoed.
UnsupportedEncodingException - If the character encoding is not supported.

VSystemStatus

public VSystemStatus(VNode parent,
                     AS400 system)
              throws AS400Exception,
                     AS400SecurityException,
                     ConnectionDroppedException,
                     ErrorCompletingRequestException,
                     InterruptedException,
                     ObjectDoesNotExistException,
                     IOException,
                     UnsupportedEncodingException,
                     PropertyVetoException
Deprecated. 
Constructs a VSystemStatus object.

Parameters:
parent - The parent.
system - The system from which the user will be retrieved.
Throws:
AS400Exception - If the system returns an error message.
AS400SecurityException - If a security or authority error occurs.
ConnectionDroppedException - If the connection is dropped unexpectedly.
ErrorCompletingRequestException - If an error occurs before the request is completed.
InterruptedException - If this thread is interrupted.
IOException - If an error occurs while communicating with the system.
ObjectDoesNotExistException - If the system object does not exist.
PropertyVetoException - If the change is vetoed.
UnsupportedEncodingException - If the character encoding is not supported.
Method Detail

addErrorListener

public void addErrorListener(ErrorListener listener)
Deprecated. 
Adds a listener to be notified when an error occurs.

Specified by:
addErrorListener in interface VObject
Parameters:
listener - The listener.

addPropertyChangeListener

public void addPropertyChangeListener(PropertyChangeListener listener)
Deprecated. 
Adds a listener to be notified when the value of any bound property changes.

Parameters:
listener - The listener.

addVetoableChangeListener

public void addVetoableChangeListener(VetoableChangeListener listener)
Deprecated. 
Adds a listener to be notified when the value of any constrained property changes.

Parameters:
listener - The listener.

addVObjectListener

public void addVObjectListener(VObjectListener listener)
Deprecated. 
Adds a listener to be notified when a VObject is changed, created, or deleted.

Specified by:
addVObjectListener in interface VObject
Parameters:
listener - The listener.

addWorkingListener

public void addWorkingListener(WorkingListener listener)
Deprecated. 
Adds a listener to be notified when work starts and stops on potentially long-running operations.

Specified by:
addWorkingListener in interface VObject
Parameters:
listener - The listener.

children

public Enumeration children()
Deprecated. 
Returns the children of the node.

Specified by:
children in interface TreeNode
Returns:
The children.

getActions

public VAction[] getActions()
Deprecated. 
Returns the list of actions that can be performed.

Specified by:
getActions in interface VObject
Returns:
Always null. There are no actions.

getAllowsChildren

public boolean getAllowsChildren()
Deprecated. 
Indicates if the node allows children.

Specified by:
getAllowsChildren in interface TreeNode
Returns:
Always false.

getChildAt

public TreeNode getChildAt(int index)
Deprecated. 
Returns the child node at the specified index.

Specified by:
getChildAt in interface TreeNode
Parameters:
index - The index.
Returns:
Always null.

getChildCount

public int getChildCount()
Deprecated. 
Returns the number of children.

Specified by:
getChildCount in interface TreeNode
Returns:
Always 0.

getDefaultAction

public VAction getDefaultAction()
Deprecated. 
Returns the default action.

Specified by:
getDefaultAction in interface VObject
Returns:
Always null. There is no default action.

getDetailsChildAt

public VObject getDetailsChildAt(int index)
Deprecated. 
Returns the child for the details at the specified index.

Specified by:
getDetailsChildAt in interface VNode
Parameters:
index - The index.
Returns:
The child, or null if the index is not valid.

getDetailsChildCount

public int getDetailsChildCount()
Deprecated. 
Returns the number of children for the details.

Specified by:
getDetailsChildCount in interface VNode
Returns:
The number of children for the details.

getDetailsColumnModel

public TableColumnModel getDetailsColumnModel()
Deprecated. 
Returns the table column model to use in the details when representing the children. This column model describes the details values for the children.

Specified by:
getDetailsColumnModel in interface VNode
Returns:
The details column model.
See Also:
VObject.getPropertyValue(java.lang.Object)

getDetailsIndex

public int getDetailsIndex(VObject detailsChild)
Deprecated. 
Returns the index of the specified child for the details.

Specified by:
getDetailsIndex in interface VNode
Parameters:
detailsChild - The details child.
Returns:
The index, or -1 if the child is not found in the details.

getIcon

public Icon getIcon(int size,
                    boolean open)
Deprecated. 
Returns the icon.

Specified by:
getIcon in interface VObject
Parameters:
size - The icon size, either 16 or 32. If any other value is given, then return a default.
open - This parameter has no effect.
Returns:
The icon.

getIndex

public int getIndex(TreeNode child)
Deprecated. 
Returns the index of the specified child.

Specified by:
getIndex in interface TreeNode
Parameters:
child - The child.
Returns:
Always -1.

getParent

public TreeNode getParent()
Deprecated. 
Returns the parent node.

Specified by:
getParent in interface TreeNode
Returns:
The parent node, or null if there is no parent.

getPropertiesPane

public VPropertiesPane getPropertiesPane()
Deprecated. 
Returns the properties pane.

Specified by:
getPropertiesPane in interface VObject
Returns:
The properties pane.

getPropertyValue

public Object getPropertyValue(Object object)
Deprecated. 
Returns a property value.

Specified by:
getPropertyValue in interface VObject
Parameters:
object - The property identifier.
Returns:
The property value, or null if the property identifier is not recognized.

getSystem

public AS400 getSystem()
Deprecated. 
Returns the system in which the system status information resides.

Returns:
The system in which the system status information resides.
See Also:
SystemStatus.getSystem()

getText

public String getText()
Deprecated. 
Returns the description text.

Specified by:
getText in interface VObject
Returns:
The description text.

isAllowModifyAllPools

public boolean isAllowModifyAllPools()
Deprecated. 
Return true if the modify action to all system pools is allowed, otherwise false.

Returns:
True if the modify action to all system pools is allowed, otherwise false.

isLeaf

public boolean isLeaf()
Deprecated. 
Indicates if the node is a leaf.

Specified by:
isLeaf in interface TreeNode
Returns:
Always true.

isSortable

public boolean isSortable()
Deprecated. 
Indicates if the details children are sortable.

Specified by:
isSortable in interface VNode
Returns:
Always false.

load

public void load()
Deprecated. 
Loads information about the object from the system.

Specified by:
load in interface VObject

removeErrorListener

public void removeErrorListener(ErrorListener listener)
Deprecated. 
Removes an error listener.

Specified by:
removeErrorListener in interface VObject
Parameters:
listener - The listener.

removePropertyChangeListener

public void removePropertyChangeListener(PropertyChangeListener listener)
Deprecated. 
Removes a property change listener.

Parameters:
listener - The listener.

removeVetoableChangeListener

public void removeVetoableChangeListener(VetoableChangeListener listener)
Deprecated. 
Removes a vetoable change listener.

Parameters:
listener - The listener.

removeVObjectListener

public void removeVObjectListener(VObjectListener listener)
Deprecated. 
Removes a VObjectListener.

Specified by:
removeVObjectListener in interface VObject
Parameters:
listener - The listener.

removeWorkingListener

public void removeWorkingListener(WorkingListener listener)
Deprecated. 
Removes a working listener.

Specified by:
removeWorkingListener in interface VObject
Parameters:
listener - The listener.

setSystem

public void setSystem(AS400 system)
               throws PropertyVetoException
Deprecated. 
Sets the system in which the system status information resides.

Parameters:
system - The system in which the system status information resides.
Throws:
PropertyVetoException - If the change is vetoed.
See Also:
SystemStatus.setSystem(com.ibm.as400.access.AS400)

setAllowModifyAllPools

public void setAllowModifyAllPools(boolean allow)
Deprecated. 
Set the state of modify action of all the pools.

Parameters:
allow - The boolean value.

sortDetailsChildren

public void sortDetailsChildren(Object[] propertyIdentifiers,
                                boolean[] orders)
Deprecated. 
Sorts the children for the details. Since sorting is not supported, this method does nothing.

Specified by:
sortDetailsChildren in interface VNode
Parameters:
propertyIdentifiers - The property identifiers.
orders - The sort orders for each property identifier: true for ascending order; false for descending order.

toString

public String toString()
Deprecated. 
Returns the string representation of the description.

Overrides:
toString in class Object
Returns:
The string representation of the description.