Class ProtocolState
- java.lang.Object
-
- de.bsvrz.kex.tls.osi2osi3.osi2.tlsoip.ProtocolState
-
public final class ProtocolState extends java.lang.ObjectDefiniert die möglichen Zustände eines Protokolls.
-
-
Field Summary
Fields Modifier and Type Field Description static ProtocolStateCREATEDStabiler Zustand für ein noch nicht gestartetes Protokoll.static ProtocolStateSTARTEDStabiler Zustand für ein gestartetes Protokoll.static ProtocolStateSTARTINGÜbergangszustand für ein startendes Protokoll.static ProtocolStateSTOPPEDStabiler Zustand für ein gestopptes Protokoll.static ProtocolStateSTOPPINGÜbergangszustand für ein zu stoppendes Protokoll.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()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.
-
-