eu.xtreemos.xosd.basic.constants
Class CallbackConstants

java.lang.Object
  extended by eu.xtreemos.xosd.basic.constants.CallbackConstants

public class CallbackConstants
extends java.lang.Object

A class containing constants used for naming default callbacks.

Author:
matej.artac@xlab.si

Field Summary
static java.lang.String defaultFailureCallbackName
          The name of the (possibly virtual) callback that gets invoked by a service event handler when an exception occurs (i.e., the service call fails) when no other explicit callback is defined.
static java.lang.String failureMethodName
          A generic method name that gets invoked after a service call that caused an uncaught exception.
static java.lang.String successMethodName
          A generic method name that gets invoked after a successful service call that returns a return value (if any).
 
Constructor Summary
CallbackConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

defaultFailureCallbackName

public static final java.lang.String defaultFailureCallbackName
The name of the (possibly virtual) callback that gets invoked by a service event handler when an exception occurs (i.e., the service call fails) when no other explicit callback is defined.

See Also:
Constant Field Values

successMethodName

public static final java.lang.String successMethodName
A generic method name that gets invoked after a successful service call that returns a return value (if any).

See Also:
Constant Field Values

failureMethodName

public static final java.lang.String failureMethodName
A generic method name that gets invoked after a service call that caused an uncaught exception. The method passes the exception thrown.

See Also:
Constant Field Values
Constructor Detail

CallbackConstants

public CallbackConstants()