psdi.mbo

Interface MaximoCache

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      java.lang.String getName()
      Returns the name of the cache object.
      void init()
      Initialize the cache object.
      void reload()
      Reloads the cache object.
      void reload(java.lang.String key)
      Initialize a specific component of the cache identified by the key.
    • Method Detail

      • init

        void init()
           throws MXException
        Initialize the cache object. This will be called by the app server on startup.
        Throws:
        MXException
      • reload

        void reload()
             throws MXException
        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).
        Throws:
        MXException
      • reload

        void reload(java.lang.String key)
             throws MXException
        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).
        Parameters:
        key -
        Throws:
        MXException
      • getName

        java.lang.String getName()
        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"
        Returns: