psdi.server

Class MaxVarsSystem

  • java.lang.Object
    • psdi.server.MaxVarsSystem
    • Field Detail

      • maxVarsSystem

        protected java.util.Hashtable maxVarsSystem
        Hashtable for maintaining local cache
    • Constructor Detail

      • MaxVarsSystem

        public MaxVarsSystem()
    • Method Detail

      • reload

        public void reload()
                    throws MXException
        Description copied from interface: MaximoCache
        Reloads the cache object. This will be called by the app server whenever the cache needs to be refreshed. Don't call this method directly. Instead call MXServer.reloadCache(String, boolean).
        Specified by:
        reload in interface MaximoCache
        Throws:
        MXException
      • reload

        public void reload(java.lang.String key)
                    throws MXException
        Description copied from interface: MaximoCache
        Initialize a specific component of the cache identified by the key. E.g. In Maxvars, a specific maxvar can be reinitiliazed from the database. Don't call this method directly. Instead call MXServer.reloadCache(String, String, boolean).
        Specified by:
        reload in interface MaximoCache
        Throws:
        MXException
      • getName

        public java.lang.String getName()
        Description copied from interface: MaximoCache
        Returns the name of the cache object. Should be unique within the app server. This name is used to uniquely identify the cache object among all cached object for both accessing the cache object as well as refreshing the cache object. Ex. MaximoDD returns "MAXIMODD"
        Specified by:
        getName in interface MaximoCache
        Returns:
      • getValueForMaxVarName

        protected java.lang.String getValueForMaxVarName(java.lang.String key)
                                                  throws MXException
        Internal method to retrieve the maxvar value.
        Parameters:
        key -
        user -
        Returns:
        Throws:
        MXException
      • put

        protected java.lang.Object put(java.lang.String key,
                                       java.lang.Object value)
        Put a maxvar value into the hashtable. Called from MaxVars save.
        Parameters:
        key - The name of the maxvar (varname).
        ogSiteId -
        value - The new value of the maxvar (varvalue).
        Returns:
        The previous value (if any).
      • remove

        protected java.lang.Object remove(java.lang.String key)
        Remove a maxvar from the hashtable. Called from MaxVars save.
        Parameters:
        key - The name of the maxvar (varname).
        ogSiteId -
        Returns:
        The previous value (if any).