Enum SynchronizationPolicyDecision

    • Enum Constant Detail

      • KEEP

        public static final SynchronizationPolicyDecision KEEP
        Existing account that is kept as it is (remains linked). Note: there still may be attribute or entitlement changes.
      • UNLINK

        public static final SynchronizationPolicyDecision UNLINK
        Existing account that should be unlinked (but NOT deleted). By unlinking we mean either physically removing a value from `linkRef`.
      • BROKEN

        public static final SynchronizationPolicyDecision BROKEN
        The projection is broken. I.e. there is some (fixable) state that prevents proper operations with the projection. This may be schema violation problem, security problem (access denied), misconfiguration, etc. Broken projections will be kept in the state that they are (maintaining status quo) until the problem is fixed. We will do no operations on broken projections and we will NOT unlink them or delete them.
      • IGNORE

        public static final SynchronizationPolicyDecision IGNORE
        The account is not usable. Context was created, but the account will be skipped. this is used only for evaluation assigment and the assigment policies
    • Method Detail

      • values

        public static SynchronizationPolicyDecision[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SynchronizationPolicyDecision c : SynchronizationPolicyDecision.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SynchronizationPolicyDecision valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null