Class JzrStandardEvent

  • All Implemented Interfaces:
    java.lang.Cloneable, JzrEvent

    public class JzrStandardEvent
    extends java.lang.Object
    implements JzrEvent

    The Jeyzer standard event class is a generic bean representing a Jeyzer applicative monitoring event. Class can be used immediately in a a generic manner or extended.
    Events are created by the application and published through the Jeyzer Monitor handlers.
    The code and id must always be set otherwise the event will not get processed when fired or started.
    The event id is automatically set by concatenating the given code name and current system time. All other parameters are optional.

    Non thread safe
    • Field Detail

      • id

        protected java.lang.String id
      • message

        protected java.lang.String message
      • trustFactor

        protected short trustFactor
    • Constructor Detail

      • JzrStandardEvent

        public JzrStandardEvent​(JzrEventCode code)
        The Jeyzer event constructor
        Parameters:
        code - the applicative code. Mandatory
      • JzrStandardEvent

        public JzrStandardEvent​(JzrEventCode code,
                                java.lang.String message)
        The Jeyzer event constructor
        Parameters:
        code - the applicative code. Mandatory
        message - the applicative event message (description, recommendation). Can be null.
      • JzrStandardEvent

        public JzrStandardEvent​(JzrEventCode code,
                                java.lang.String message,
                                short trustFactor)
        The Jeyzer event constructor
        Parameters:
        code - the applicative code. Can be null
        message - the applicative event message (description, recommendation). Can be null.
        trustFactor - the applicative trust factor. Between 0 and 100.
      • JzrStandardEvent

        public JzrStandardEvent​(JzrStandardEvent event)
        The Jeyzer cloning constructor
        Parameters:
        event - the applicative event to clone.
    • Method Detail

      • getCode

        public JzrEventCode getCode()
        Get the applicative event code. Can be null.
        Specified by:
        getCode in interface JzrEvent
        Returns:
        the applicative event code
      • getId

        public java.lang.String getId()
        Get the applicative event unique id.
        Specified by:
        getId in interface JzrEvent
        Returns:
        the applicative event id
      • getMessage

        public java.lang.String getMessage()
        Get the applicative event message. Can be null.
        Specified by:
        getMessage in interface JzrEvent
        Returns:
        the applicative event message
      • getTrustFactor

        public short getTrustFactor()
        Get the applicative event trust factor.
        Specified by:
        getTrustFactor in interface JzrEvent
        Returns:
        the applicative event trust factor
      • setTrustFactor

        public void setTrustFactor​(short trustFactor)
        Set the applicative event trust factor.
        Parameters:
        trustFactor - the applicative event trust factor
      • clone

        public java.lang.Object clone()
        Clone the event.
        Specified by:
        clone in interface JzrEvent
        Overrides:
        clone in class java.lang.Object
        Returns:
        the cloned object