Interface UserDataHolder

    • Method Detail

      • getUserData

        String getUserData​(String key)
                    throws IamSvcException
        Get a named data value.
        Parameters:
        key - a key for a user data entry
        Returns:
        a value or null
        Throws:
        IamSvcException - if there's a problem in the IAM service
      • putUserData

        void putUserData​(String key,
                         String val)
                  throws IamSvcException
        Put a named data value.
        Parameters:
        key - a key for the user data entry
        val - a value to store
        Throws:
        IamSvcException - if there's a problem in the IAM service
      • removeUserData

        void removeUserData​(String key)
                     throws IamSvcException
        Remove a named data value.
        Parameters:
        key - a key for a user data entry
        Throws:
        IamSvcException - if there's a problem in the IAM service