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

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

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

Aufzählungstyp für die Fehler beim Versand der Daten zum Datenverteiler.


Enum Constant Summary
KEINE_BERECHTIGUNG
          Keine Berechtigung für den Versand der Daten an den Datenverteiler (fehlende Zugriffsrechte Datenverteiler).
KOMMUNIKATIONS_AUSNAHME
          Ausnahme bei der Kommunikation mit dem Datenverteiler aufgetreten.
KOMMUNIKATIONS_FEHLER
          Fehler bei der Kommunikation mit dem Datenverteiler aufgetreten.
 
Method Summary
static UrlasserDialogListener.FehlerDatenVersand valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UrlasserDialogListener.FehlerDatenVersand[] 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.FehlerDatenVersand KOMMUNIKATIONS_FEHLER
Fehler bei der Kommunikation mit dem Datenverteiler aufgetreten.
siehe ClientDavConnection CommunicationError.


KOMMUNIKATIONS_AUSNAHME

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


KEINE_BERECHTIGUNG

public static final UrlasserDialogListener.FehlerDatenVersand KEINE_BERECHTIGUNG
Keine Berechtigung für den Versand der Daten an den Datenverteiler (fehlende Zugriffsrechte Datenverteiler).
Implementierungsinformation:
Diese Information wird vom Datenverteiler über das ClientSenderInterface in der Methode dataRequest mit dem Status (state) STOP_SENDING_NO_RIGHTS mitgeteilt und wird auch gemeldet, wenn keine Sendesteuerung gewünscht wurde.

Method Detail

values

public static UrlasserDialogListener.FehlerDatenVersand[] 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.FehlerDatenVersand c : UrlasserDialogListener.FehlerDatenVersand.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.FehlerDatenVersand 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