com.ibm.itim.apps.system

Class SystemRoleManager.ViewCategory

  • java.lang.Object
    • com.ibm.itim.apps.system.SystemRoleManager.ViewCategory
  • Enclosing class:
    SystemRoleManager


    public static class SystemRoleManager.ViewCategory
    extends java.lang.Object
    The Category class is a container for information about different Categories, or Views, defined inside of ITIM. Category classes are read-only, and so have no methods available to change their data.
    Since:
    ITIM 5.0
    • Constructor Summary

      Constructors 
      Constructor and Description
      ViewCategory(java.lang.String name, java.lang.String description, int category)
      Create a new Category.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      int getCategory()
      Get the category integer of the category.
      java.lang.String getDescription()
      Get the description of the category.
      java.lang.String getName()
      Get the name of the category.
      • Methods inherited from class java.lang.Object

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

      • ViewCategory

        public ViewCategory(java.lang.String name,
                            java.lang.String description,
                            int category)
        Create a new Category. The constructor is only meant for use by the SystemRoleManager class. There is really no reason for any other class to every create a Category.
        Parameters:
        name - The name of the category.
        description - The description of the category. May be null.
        category - The int that identifies the category.
    • Method Detail

      • getName

        public java.lang.String getName()
        Get the name of the category.
        Returns:
        The name of the category.
      • getDescription

        public java.lang.String getDescription()
        Get the description of the category. The description may be null.
        Returns:
        The description of the category.
      • getCategory

        public int getCategory()
        Get the category integer of the category.
        Returns:
        The integer that uniquely identifies the category in ITIM.