Package lumis.portal.audit
Class AuditCategory
- java.lang.Object
-
- lumis.portal.audit.AuditCategory
-
public class AuditCategory extends 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 String
getDescription()
Returns the category description.String
getId()
Returns the category id.String
getKey()
Returns the category key.String
getName()
Returns the category name.boolean
isEnabled()
Returns true if the category is enabled, false otherwise.void
setDescription(String description)
Sets the category description.void
setEnabled(boolean enabled)
Changes the enabled category flag.void
setKey(String key)
Sets the category key.void
setName(String name)
Sets the category name.
-
-
-
Method Detail
-
getId
public String getId()
Returns the category id.- Returns:
- category id.
- Since:
- 6.0.0
-
getKey
public String getKey()
Returns the category key.- Returns:
- the category key.
- Since:
- 6.0.0
-
setKey
public void setKey(String key)
Sets the category key.- Parameters:
key
- the category key.- Since:
- 6.0.0
-
getName
public String getName()
Returns the category name.- Returns:
- the category name.
- Since:
- 6.0.0
-
setName
public void setName(String name)
Sets the category name.- Parameters:
name
- the category name.- Since:
- 6.0.0
-
getDescription
public String getDescription()
Returns the category description.- Returns:
- the category description.
- Since:
- 6.0.0
-
setDescription
public void setDescription(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
-
-