Class DimensionValue

java.lang.Object
com.i2group.disco.security.spi.DimensionValue
All Implemented Interfaces:
IDimensionValue

public class DimensionValue extends Object implements IDimensionValue
An implementation of IDimensionValue.
Since:
13.2
  • Method Details

    • create

      public static IDimensionValue create(String id, String displayName)
      Creates and returns an IDimensionValue object with the specified identifier and display name.
      Parameters:
      id - The identifier for the new dimension value, which must not be null or empty.
      displayName - The display name for the new dimension value, which must not be null or empty.
      Returns:
      See above.
    • create

      public static IDimensionValue create(String id, String displayName, String description)
      Creates and returns an IDimensionValue object with the specified identifier, display name, and description.
      Parameters:
      id - The identifier for the new dimension value, which must not be null or empty.
      displayName - The display name for the new dimension value, which must not be null or empty.
      description - The description for the dimension value.
      Returns:
      See above.
    • getId

      public String getId()
      Description copied from interface: IDimensionValue
      Gets the identifier of the security dimension value.
      Specified by:
      getId in interface IDimensionValue
      Returns:
      See above.
    • getDisplayName

      public String getDisplayName()
      Description copied from interface: IDimensionValue
      Gets the display name of the security dimension value.
      Specified by:
      getDisplayName in interface IDimensionValue
      Returns:
      See above.
    • getDescription

      public String getDescription()
      Description copied from interface: IDimensionValue
      Gets the description of the security dimension value.
      Specified by:
      getDescription in interface IDimensionValue
      Returns:
      See above.