Class RemoteResultMessage
- java.lang.Object
-
- org.neotropic.kuwaiba.northbound.ws.model.application.RemoteResultMessage
-
- All Implemented Interfaces:
Serializable
public class RemoteResultMessage extends Object implements Serializable
The result of a task execution- Author:
- Charles Edward Bedon Cortazar <charles.bedon@kuwaiba.org>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
STATUS_ERROR
The task resulted in error.static int
STATUS_SUCCESS
The execution was successfulstatic int
STATUS_WARNING
The execution had non-blocking errors.
-
Constructor Summary
Constructors Constructor Description RemoteResultMessage(int messagetType, String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getMessage()
int
getMessageType()
void
setMessage(String message)
void
setMessageType(int messageType)
-
-
-
Field Detail
-
STATUS_ERROR
public static final int STATUS_ERROR
The task resulted in error. The consumer should check the errorMessage for details- See Also:
- Constant Field Values
-
STATUS_SUCCESS
public static final int STATUS_SUCCESS
The execution was successful- See Also:
- Constant Field Values
-
STATUS_WARNING
public static final int STATUS_WARNING
The execution had non-blocking errors. There will be messages, but also an error message- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RemoteResultMessage
public RemoteResultMessage(int messagetType, String message)
-
-