com.ibm.ras
Class RASMaskChangeEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.ibm.ras.RASMaskChangeEvent
-
- All Implemented Interfaces:
- java.io.Serializable
Deprecated.As of WAS 6.0, recommend using java.util.logging
public class RASMaskChangeEvent extends java.util.EventObjectRASMaskChangeEventindicates that a change has occurred in a message or trace mask. It is sent from aRASIMaskChangeGeneratorto aRASIMaskChangeListener.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description RASMaskChangeEvent(java.lang.Object source, long oldMask, long newMask, boolean flag)Deprecated.Creates aRASMaskChangeEvent.
-
Method Summary
Methods Modifier and Type Method and Description longgetNewMask()Deprecated.Gets the new message or trace mask value.longgetOldMask()Deprecated.Gets the old message or trace mask value.booleanisMessageMask()Deprecated.Determines if the changed mask was a message mask or a trace mask.
-
-
-
Constructor Detail
-
RASMaskChangeEvent
public RASMaskChangeEvent(java.lang.Object source, long oldMask, long newMask, boolean flag)Deprecated.Creates aRASMaskChangeEvent.- Parameters:
source- The object which generated thisRASMaskChangeEventoldMask- The old mask value.newMask- The new mask value.flag-trueif this mask is a message mask andfalseif it is a trace mask.
-
-
Method Detail
-
getOldMask
public long getOldMask()
Deprecated.Gets the old message or trace mask value.- Returns:
- The old mask value.
-
getNewMask
public long getNewMask()
Deprecated.Gets the new message or trace mask value.- Returns:
- The new mask value.
-
isMessageMask
public boolean isMessageMask()
Deprecated.Determines if the changed mask was a message mask or a trace mask.- Returns:
trueif this changed mask is a message mask andfalseif it is a trace mask.
-
-