Class ProtocolState
- java.lang.Object
-
- de.bsvrz.kex.tls.osi2osi3.osi2.tlsoip.ProtocolState
-
public final class ProtocolState extends java.lang.Object
Definiert die möglichen Zustände eines Protokolls.
-
-
Field Summary
Fields Modifier and Type Field Description 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.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Liefert eine textuelle Beschreibung dieses Zustands zurück.
-
-
-
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.
-
-