Class AuditCategory


  • public class AuditCategory
    extends java.lang.Object
    Represents the Audit category.
    Since:
    6.0.0
    Version:
    $Revision: 13093 $ $Date: 2011-05-28 18:40:18 -0300 (Sat, 28 May 2011) $
    • Constructor Summary

      Constructors 
      Constructor Description
      AuditCategory()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Returns the category description.
      java.lang.String getId()
      Returns the category id.
      java.lang.String getKey()
      Returns the category key.
      java.lang.String getName()
      Returns the category name.
      boolean isEnabled()
      Returns true if the category is enabled, false otherwise.
      void setDescription​(java.lang.String description)
      Sets the category description.
      void setEnabled​(boolean enabled)
      Changes the enabled category flag.
      void setKey​(java.lang.String key)
      Sets the category key.
      void setName​(java.lang.String name)
      Sets the category name.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AuditCategory

        public AuditCategory()
    • Method Detail

      • getId

        public java.lang.String getId()
        Returns the category id.
        Returns:
        category id.
        Since:
        6.0.0
      • getKey

        public java.lang.String getKey()
        Returns the category key.
        Returns:
        the category key.
        Since:
        6.0.0
      • setKey

        public void setKey​(java.lang.String key)
        Sets the category key.
        Parameters:
        key - the category key.
        Since:
        6.0.0
      • getName

        public java.lang.String getName()
        Returns the category name.
        Returns:
        the category name.
        Since:
        6.0.0
      • setName

        public void setName​(java.lang.String name)
        Sets the category name.
        Parameters:
        name - the category name.
        Since:
        6.0.0
      • getDescription

        public java.lang.String getDescription()
        Returns the category description.
        Returns:
        the category description.
        Since:
        6.0.0
      • setDescription

        public void setDescription​(java.lang.String description)
        Sets the category description.
        Parameters:
        description - the category description.
        Since:
        6.0.0
      • isEnabled

        public boolean isEnabled()
        Returns true if the category is enabled, false otherwise.
        Returns:
        true if the category is enabled, false otherwise.
        Since:
        6.0.0
      • setEnabled

        public void setEnabled​(boolean enabled)
        Changes the enabled category flag.
        Parameters:
        enabled - true for enabling category, false for disabling.
        Since:
        6.0.0