Enum CacheManagerFactory

    • Field Detail

      • SESSION_CACHE_PREFIX

        public static final java.lang.String SESSION_CACHE_PREFIX
        See Also:
        Constant Field Values
      • SHARED_CACHE_PREFIX

        public static final java.lang.String SHARED_CACHE_PREFIX
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE

        public static final java.lang.String RELIABILITY_CACHE
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_ALLOWED_PACKAGES

        public static final java.lang.String RELIABILITY_CACHE_ALLOWED_PACKAGES
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_DIRECTORY

        public static final java.lang.String RELIABILITY_CACHE_DIRECTORY
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_MODE

        public static final java.lang.String RELIABILITY_CACHE_MODE
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_REMOTE_HOST

        public static final java.lang.String RELIABILITY_CACHE_REMOTE_HOST
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_REMOTE_PORT

        public static final java.lang.String RELIABILITY_CACHE_REMOTE_PORT
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_REMOTE_USER

        public static final java.lang.String RELIABILITY_CACHE_REMOTE_USER
        See Also:
        Constant Field Values
      • RELIABILITY_CACHE_REMOTE_PASS

        public static final java.lang.String RELIABILITY_CACHE_REMOTE_PASS
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static CacheManagerFactory[] 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 (CacheManagerFactory c : CacheManagerFactory.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CacheManagerFactory valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getCacheManager

        public org.drools.reliability.CacheManager getCacheManager()