systeminformationmonitor.system.object
Class TCPStatObject

java.lang.Object
  extended by systeminformationmonitor.system.object.TCPStatObject

public class TCPStatObject
extends java.lang.Object

Messenger Object for TCP stats.


Constructor Summary
TCPStatObject()
           
 
Method Summary
 long getActiveOpens()
          Getter method for the number of active open connections
 long getAttemptFails()
          Getter method for failed connection attempts.
 long getCurrentEstab()
          Getter method for connection established.
 long getEstabResets()
          Getter method for the number of connection resets received
 long getInErrs()
          Getter method for bad segments received.
 long getInSegs()
           
 long getOutRsts()
           
 long getOutSegs()
           
 long getPassiveOpens()
           
 long getRetransSegs()
           
 void setActiveOpens(long activeOpens)
          Setter method for number of active open connections
 void setAttemptFails(long attemptFails)
          Setter method for failed connection attempts.
 void setCurrentEstab(long currentEstab)
          Setter method for connection established.
 void setEstabResets(long EstabResets)
          Setter method for the number of connection resets received
 void setInErrs(long inErrs)
          Setter method for number of bad segments received.
 void setInSegs(long inSegs)
           
 void setOutRsts(long outRsts)
           
 void setOutSegs(long outSegs)
           
 void setPassiveOpens(long passiveOpens)
           
 void setRetransSegs(long retransSegs)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TCPStatObject

public TCPStatObject()
Method Detail

getEstabResets

public long getEstabResets()
Getter method for the number of connection resets received

Returns:
the number of connection resets received

setEstabResets

public void setEstabResets(long EstabResets)
Setter method for the number of connection resets received

Parameters:
EstabResets - the number of connect resets recieved

getActiveOpens

public long getActiveOpens()
Getter method for the number of active open connections

Returns:
the number of active open connections

setActiveOpens

public void setActiveOpens(long activeOpens)
Setter method for number of active open connections

Parameters:
activeOpens -

getAttemptFails

public long getAttemptFails()
Getter method for failed connection attempts.

Returns:
the number of failed connection attempts

setAttemptFails

public void setAttemptFails(long attemptFails)
Setter method for failed connection attempts.

Parameters:
attemptFails - the number of failed connection attempts

getCurrentEstab

public long getCurrentEstab()
Getter method for connection established.

Returns:
the number of connection established

setCurrentEstab

public void setCurrentEstab(long currentEstab)
Setter method for connection established.

Parameters:
currentEstab - the number of connection established.

getInErrs

public long getInErrs()
Getter method for bad segments received.

Returns:
number of bad segments received

setInErrs

public void setInErrs(long inErrs)
Setter method for number of bad segments received.

Parameters:
inErrs - number of bad segments received

getInSegs

public long getInSegs()

setInSegs

public void setInSegs(long inSegs)

getOutRsts

public long getOutRsts()

setOutRsts

public void setOutRsts(long outRsts)

getOutSegs

public long getOutSegs()

setOutSegs

public void setOutSegs(long outSegs)

getPassiveOpens

public long getPassiveOpens()

setPassiveOpens

public void setPassiveOpens(long passiveOpens)

getRetransSegs

public long getRetransSegs()

setRetransSegs

public void setRetransSegs(long retransSegs)