All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.seeq.utilities.Constants Maven / Gradle / Ivy

The newest version!
package com.seeq.utilities;

import java.time.Duration;

public class Constants {
    public static final Duration GENERAL_TIMEOUT = Duration.ofSeconds(20);
    public static final Duration GENERAL_WAIT_INTERVAL = Duration.ofMillis(50);

    /**
     * The security string to set for an item to stop a datasource from managing the ACL for the item.
     * When using this string as the SecurityString, permission inheritance will stay disabled and permissions will
     * stay exactly like they were before, but will be manageable in Seeq.
     */
    public static final String SECURITY_STRING_NOT_USED = "not used";

    /**
     * The security string to set for an item to stop a datasource from managing the ACL for the item.
     * When using this string as the SecurityString, permission inheritance will get enabled and permissions will be
     * manageable in Seeq, but the item will ALSO inherit permissions from its parent (as permissions inheritance is
     * enabled).
     */
    public static final String SECURITY_STRING_INHERIT = "inherit";

    /**
     * The security string suffix automatically added by the system when not all identities were resolvable
     */
    public static final String SECURITY_STRING_UNRESOLVED_SUFFIX = "|[***]";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy