Exemplo n.º 1
0
        ///
        ///	 <summary> * add a Notification Audit
        ///	 *  </summary>
        ///	 * <param name="by"> the author keyword </param>
        ///	 * <param name="s"> severity of the event
        ///	 *  </param>
        ///	 * <returns> JDFAudit - the newly created Notification Audit TODO replace with addNotification </returns>
        ///
        public virtual JDFAudit addEvent(string by, JDFAudit.EnumSeverity s)
        {
            JDFAudit l = addAudit(JDFAudit.EnumAuditType.Notification, by);

            l.setSeverity(s);
            return(l);
        }