|
7.0 Action Request System Java API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.remedy.arsys.api.Status
The Status
class represents a message generated by a function call
and consists of four elements:
m_messageType
--
Integer value indicating the type of message being returned.
m_messageNum
--
Error number associated with the message
m_messageText
--
Message text in the language specified in ARServerUser
.
m_appendedText
--
Text that augments the message text.
Field Summary | |
java.lang.String |
m_appendedText
Text that augments the message text. |
long |
m_messageNum
Error number associated with the message |
java.lang.String |
m_messageText
Message text corresponding to message number in the language specified in ARServerUser . |
int |
m_messageType
Integer value indicating the type of message being returned. |
Constructor Summary | |
Status(int nMessageType,
long lMessageNum,
java.lang.String messageText,
java.lang.String appendText)
|
Method Summary | |
java.lang.Object |
clone()
Clone implementation that returns an Object with data cloned from self |
java.lang.String |
toString()
Returns a string description of the object. |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public int m_messageType
Constants.AR_RETURN_OK
--
Operation successful ? status may contain one or more informational messages.
Constants.AR_RETURN_WARNING
--
Operation successful, but some problem encountered ?
status contains one or more warning messages and may also
contain informational messages.
Constants.AR_RETURN_ERROR
--
Operation failed ? status contains one or more error messages and may also
contain warning or informational messages.
Constants.AR_RETURN_FATAL
--
Operation failed ? status may contain one or more messages.
Constants.AR_RETURN_BAD_STATUS
--
Invalid status parameter ? operation cancelled.
Constants.AR_RETURN_PROMPT
--
Active link message action type, prompt message.
Constants.AR_RETURN_ACCESSIBLE
--
Active link message action type, status message for client accessibility.
public long m_messageNum
public java.lang.String m_messageText
ARServerUser
.
public java.lang.String m_appendedText
Constants.AR_MAX_MESSAGE_SIZE
(255 bytes).
Constructor Detail |
public Status(int nMessageType, long lMessageNum, java.lang.String messageText, java.lang.String appendText)
Method Detail |
public java.lang.String toString()
public java.lang.Object clone()
|
7.0 Action Request System Java API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |