Enum ClientConnectionState

java.lang.Object
java.lang.Enum<ClientConnectionState>
de.bsvrz.dav.daf.main.ClientConnectionState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ClientConnectionState>, java.lang.constant.Constable

public enum ClientConnectionState
extends java.lang.Enum<ClientConnectionState>
Verbindungsstatus von Anmeldungen
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    FromLocalOk
    Die angemeldete Applikation ist lokal verbunden (normale Anmeldung an diesem Datenverteiler)
    FromRemoteOk
    Eine eingehende Anmeldung von einem anderen Datenverteiler.
    ToRemoteMultiple
    Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, negative Rückmeldung da am anderen Datenverteiler mehrere potentielle Zentraldatenverteiler verbunden sind, von denen mehrere eine positive Rückmeldung gegeben haben.
    ToRemoteNotAllowed
    Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, negative Rückmeldung da keine Berechtigung vorliegt, die Daten zu empfangen oder zu senden
    ToRemoteNotResponsible
    Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, negative Rückmeldung da anderer Datenverteiler keine Quelle/Senke für das Datum besitzt
    ToRemoteOk
    Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, positive Rückmeldung (anderer Datenverteiler ist entweder der Zentraldatenverteiler oder dieser ist über ihn erreichbar).
    ToRemoteWaiting
    Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, noch keine Rückmeldung
  • Method Summary

    Modifier and Type Method Description
    static ClientConnectionState valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static ClientConnectionState[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • FromLocalOk

      public static final ClientConnectionState FromLocalOk
      Die angemeldete Applikation ist lokal verbunden (normale Anmeldung an diesem Datenverteiler)
    • FromRemoteOk

      public static final ClientConnectionState FromRemoteOk
      Eine eingehende Anmeldung von einem anderen Datenverteiler. Dies entspricht vom Verhalten her in vielen Punkten einer lokalen Anmeldung, d.h. der Datenverteiler meldet an den anfragenden Datenverteiler zurück, ob eine Quelle/Senke verfügbar ist oder nicht.
    • ToRemoteWaiting

      public static final ClientConnectionState ToRemoteWaiting
      Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, noch keine Rückmeldung
    • ToRemoteOk

      public static final ClientConnectionState ToRemoteOk
      Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, positive Rückmeldung (anderer Datenverteiler ist entweder der Zentraldatenverteiler oder dieser ist über ihn erreichbar).
    • ToRemoteNotResponsible

      public static final ClientConnectionState ToRemoteNotResponsible
      Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, negative Rückmeldung da anderer Datenverteiler keine Quelle/Senke für das Datum besitzt
    • ToRemoteNotAllowed

      public static final ClientConnectionState ToRemoteNotAllowed
      Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, negative Rückmeldung da keine Berechtigung vorliegt, die Daten zu empfangen oder zu senden
    • ToRemoteMultiple

      public static final ClientConnectionState ToRemoteMultiple
      Ausgehende Anmeldung an einen anderen potentiellen Zentraldatenverteiler, negative Rückmeldung da am anderen Datenverteiler mehrere potentielle Zentraldatenverteiler verbunden sind, von denen mehrere eine positive Rückmeldung gegeben haben. Es gibt also mehrere Quellen oder Senken.
  • Method Details

    • values

      public static ClientConnectionState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ClientConnectionState valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null