org.eclipse.hyades.logging.events
Interface IStopSituation

All Superinterfaces:
ISituationType
All Known Implementing Classes:
StopSituationImpl

Deprecated. This class is deprecated as of 2004-05-17. Use the corresponding class available in org.eclipse.hyades.logging.events.cbe*

public interface IStopSituation
extends ISituationType

The StopSituation deals with the shutdown process for a component. Message that indicate that a component has begun to stop, that it has stopped, or that the stopping process has failed all fall into this category. Existing messages include words like stop, stopping, stopped, completed, and exiting, for example: WSVR0220I: Application stopped: {0} WSVR0102E: An error occurred stopping, {0} MSGS0657I: Stopping the MQJD JMS Provider

Since:
1.0.1
Version:
1.0.1
Author:
Richard K. Duggan, Paul E. Slauenwhite
See Also:
ISituationType

Method Summary
 java.lang.String getSituationQualifier()
          Deprecated. Returns the situationQualifier.
 java.lang.String getSuccessDisposition()
          Deprecated. Returns the successDisposition.
 void setSituationQualifier(java.lang.String situationQualifier)
          Deprecated. Sets the situationQualifier.
 void setSuccessDisposition(java.lang.String successDisposition)
          Deprecated. Sets the successDisposition.
 
Methods inherited from interface org.eclipse.hyades.logging.events.ISituationType
getReasoningScope, init, setReasoningScope
 

Method Detail

getSuccessDisposition

public java.lang.String getSuccessDisposition()
Deprecated. 
Returns the successDisposition. This property specifies the success disposition of an operation of a situation that caused the situation to be reported. The successDisposition is a string with the following set of values: SUCCESSFUL UNSUCCESSFUL This is a REQUIRED property and once it is set it MUST NOT change. The string length for this property MUST NOT exceed 64 characters.

Returns:
String The returned successDisposition.
Since:
1.0.1

getSituationQualifier

public java.lang.String getSituationQualifier()
Deprecated. 
Returns the situationQualifier. This property specifies the situation qualifiers that are representation of the parameters necessary to describe the situation. The situationQualifier is a string with the following set of values: STOP INITIATED ABORT INITIATED PAUSE INITIATED STOP COMPLETED This is a REQUIRED property and once it is set it MUST NOT change. The string length for this property MUST NOT exceed 64 characters.

Returns:
String The returned situationQualifier.
Since:
1.0.1

setSuccessDisposition

public void setSuccessDisposition(java.lang.String successDisposition)
Deprecated. 
Sets the successDisposition. This property specifies the success disposition of an operation of a situation that caused the situation to be reported. The successDisposition is a string with the following set of values: SUCCESSFUL UNSUCCESSFUL This is a REQUIRED property and once it is set it MUST NOT change. The string length for this property MUST NOT exceed 64 characters.

Parameters:
successDisposition - The successDisposition to be set.
Since:
1.0.1

setSituationQualifier

public void setSituationQualifier(java.lang.String situationQualifier)
Deprecated. 
Sets the situationQualifier. This property specifies the situation qualifiers that are representation of the parameters necessary to describe the situation. The situationQualifier is a string with the following set of values: STOP INITIATED ABORT INITIATED PAUSE INITIATED STOP COMPLETED This is a REQUIRED property and once it is set it MUST NOT change. The string length for this property MUST NOT exceed 64 characters.

Parameters:
situationQualifier - The situationQualifier to be set.
Since:
1.0.1