Package org.iam.utils

Class Parameter

java.lang.Object
org.iam.utils.Parameter

public class Parameter extends Object
Global parameters and flags for controlling AccessRefinery behavior.

This class holds static configuration options and runtime flags used throughout the application.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static boolean
    Enable or disable BDD (Binary Decision Diagram) mode.
    static boolean
    Whether to merge results or findings.
    static boolean
    Whether to reduce the findings.
    static boolean
    If true, use the whole space minus the finding when mining findings.
    static boolean
    Treat the list of values as a whole label, e.g., IAM:[User1, User2].
    static boolean
    Enable or disable time logging.
    static Logger
    Logger instance for findings and general logging.
    static int
    Current round or iteration count.
    static String
    Stores time log information as a string.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • isTimeLog

      public static boolean isTimeLog
      Enable or disable time logging.
    • LOGGER

      public static Logger LOGGER
      Logger instance for findings and general logging.
    • timeLog

      public static String timeLog
      Stores time log information as a string.
    • isSplitLabel

      public static boolean isSplitLabel
      Treat the list of values as a whole label, e.g., IAM:[User1, User2].
    • isRestMode

      public static boolean isRestMode
      If true, use the whole space minus the finding when mining findings.
    • isReduced

      public static boolean isReduced
      Whether to reduce the findings.
    • isMerged

      public static boolean isMerged
      Whether to merge results or findings.
    • round

      public static int round
      Current round or iteration count.
    • isBDD

      public static boolean isBDD
      Enable or disable BDD (Binary Decision Diagram) mode.
  • Constructor Details

    • Parameter

      public Parameter()