org.eclipse.hyades.logging.events
Interface IStartSituation

All Superinterfaces:
ISituationType
All Known Implementing Classes:
StartSituationImpl

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

public interface IStartSituation
extends ISituationType

The StartSituation deals with the start up process for a component. Messages that indicate that a component has begun the startup process, that it has finished the startup process, or that it has aborted the startup process all fall into this category. Existing messages include words like starting, started, initializing, and initialized, for example: DIA3206I The TCP/IP protocol support was started successfully. DIA3000I "%1S" protocol support was successfully started. DIA3001E "%1S" protocol support was not successfully started. WSVR0037I: Starting EJB jar: {0}

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: START INITIATED RESTART INITIATED START 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: START INITIATED RESTART INITIATED START 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