de.bsvrz.buv.rw.basislib.login
Enum UrlasserDialogListener.FehlerDavVerbindung

java.lang.Object
  extended by java.lang.Enum<UrlasserDialogListener.FehlerDavVerbindung>
      extended by de.bsvrz.buv.rw.basislib.login.UrlasserDialogListener.FehlerDavVerbindung
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UrlasserDialogListener.FehlerDavVerbindung>
Enclosing interface:
UrlasserDialogListener

public static enum UrlasserDialogListener.FehlerDavVerbindung
extends java.lang.Enum<UrlasserDialogListener.FehlerDavVerbindung>

Aufzählungstyp für die Fehler beim Aufbau der Datenverteilerverbindung.


Enum Constant Summary
BENUTZERANMELDUNG_FEHLGESCHLAGEN
          Benutzeranmeldung am Datenverteiler ist fehlgeschlagen.
KOMMUNIKATIONS_AUSNAHME
          Ausnahme bei der Kommunikation mit dem Datenverteiler aufgetreten.
KOMMUNIKATIONS_FEHLER
          Fehler bei der Kommunikation mit dem Datenverteiler aufgetreten.
 
Method Summary
static UrlasserDialogListener.FehlerDavVerbindung valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UrlasserDialogListener.FehlerDavVerbindung[] 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, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

KOMMUNIKATIONS_FEHLER

public static final UrlasserDialogListener.FehlerDavVerbindung KOMMUNIKATIONS_FEHLER
Fehler bei der Kommunikation mit dem Datenverteiler aufgetreten.
siehe ClientDavConnection CommunicationError.


KOMMUNIKATIONS_AUSNAHME

public static final UrlasserDialogListener.FehlerDavVerbindung KOMMUNIKATIONS_AUSNAHME
Ausnahme bei der Kommunikation mit dem Datenverteiler aufgetreten.
siehe ClientDavConnection ConnectionException.


BENUTZERANMELDUNG_FEHLGESCHLAGEN

public static final UrlasserDialogListener.FehlerDavVerbindung BENUTZERANMELDUNG_FEHLGESCHLAGEN
Benutzeranmeldung am Datenverteiler ist fehlgeschlagen.
siehe ClientDavConnection InconsistentLoginException.

Method Detail

values

public static UrlasserDialogListener.FehlerDavVerbindung[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (UrlasserDialogListener.FehlerDavVerbindung c : UrlasserDialogListener.FehlerDavVerbindung.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static UrlasserDialogListener.FehlerDavVerbindung 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