de.bsvrz.kex.tls.osi2osi3.osi2.wancom
Class ProtocolState

java.lang.Object
  extended by de.bsvrz.kex.tls.osi2osi3.osi2.wancom.ProtocolState

public final class ProtocolState
extends Object

Definiert die möglichen Zustände eines Protokolls.

Author:
Kappich Systemberatung

Field Summary
private  String _name
          Name des Zustands
static ProtocolState CREATED
          Stabiler Zustand für ein noch nicht gestartetes Protokoll.
static ProtocolState STARTED
          Stabiler Zustand für ein gestartetes Protokoll.
static ProtocolState STARTING
          Übergangszustand für ein startendes Protokoll.
static ProtocolState STOPPED
          Stabiler Zustand für ein gestopptes Protokoll.
static ProtocolState STOPPING
          Übergangszustand für ein zu stoppendes Protokoll.
 
Constructor Summary
private ProtocolState(String name)
          Nicht öffentlicher Konstruktor der zum Erzeugen der vordefinierten Zustände benutzt wird.
 
Method Summary
 String toString()
          Liefert eine textuelle Beschreibung dieses Zustands zurück.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CREATED

public static final ProtocolState CREATED
Stabiler Zustand für ein noch nicht gestartetes Protokoll.


STARTING

public static final ProtocolState STARTING
Übergangszustand für ein startendes Protokoll.


STARTED

public static final ProtocolState STARTED
Stabiler Zustand für ein gestartetes Protokoll.


STOPPING

public static final ProtocolState STOPPING
Übergangszustand für ein zu stoppendes Protokoll.


STOPPED

public static final ProtocolState STOPPED
Stabiler Zustand für ein gestopptes Protokoll.


_name

private final String _name
Name des Zustands

Constructor Detail

ProtocolState

private ProtocolState(String name)
Nicht öffentlicher Konstruktor der zum Erzeugen der vordefinierten Zustände benutzt wird.

Parameters:
name - Name des Zustandes.
Method Detail

toString

public String toString()
Liefert eine textuelle Beschreibung dieses Zustands zurück. Das genaue Format ist nicht festgelegt und kann sich ändern.

Overrides:
toString in class Object
Returns:
Beschreibung dieses Zustands.