Class RequestPreferences

  • All Implemented Interfaces:
    javax.portlet.PortletPreferences, IPreferences

    public class RequestPreferences
    extends Object
    implements IPreferences
    The preferences object returned by the ServiceContainerRequest.
    Since:
    4.0.7
    Version:
    $Revision: 20212 $ $Date: 2017-06-05 18:16:13 -0300 (Mon, 05 Jun 2017) $
    • Method Detail

      • getMap

        public Map getMap()
        Specified by:
        getMap in interface javax.portlet.PortletPreferences
      • getNames

        public Enumeration getNames()
        Specified by:
        getNames in interface javax.portlet.PortletPreferences
      • getValue

        public String getValue​(String key,
                               String def)
        Specified by:
        getValue in interface javax.portlet.PortletPreferences
      • getValues

        public String[] getValues​(String key,
                                  String[] def)
        Specified by:
        getValues in interface javax.portlet.PortletPreferences
      • isReadOnly

        public boolean isReadOnly​(String key)
        Specified by:
        isReadOnly in interface javax.portlet.PortletPreferences
      • reset

        public void reset​(String key)
                   throws javax.portlet.ReadOnlyException
        Specified by:
        reset in interface javax.portlet.PortletPreferences
        Throws:
        javax.portlet.ReadOnlyException
      • setValue

        public void setValue​(String key,
                             String value)
                      throws javax.portlet.ReadOnlyException
        Specified by:
        setValue in interface javax.portlet.PortletPreferences
        Throws:
        javax.portlet.ReadOnlyException
      • setValues

        public void setValues​(String key,
                              String[] values)
                       throws javax.portlet.ReadOnlyException
        Specified by:
        setValues in interface javax.portlet.PortletPreferences
        Throws:
        javax.portlet.ReadOnlyException
      • store

        public void store()
                   throws IOException,
                          javax.portlet.ValidatorException
        Specified by:
        store in interface javax.portlet.PortletPreferences
        Throws:
        IOException
        javax.portlet.ValidatorException
      • getLocalValue

        public String getLocalValue​(String key,
                                    String def)
        Description copied from interface: IPreferences
        Returns the first String value associated with the specified key of this preference. This preference is read locally in the current preference level. If there is one or more preference values associated with the given key it returns the first local associated value. If there are no preference values associated with the given key, or the backing preference database is unavailable, it returns the given default value. A null value is treated as a non-existent value.
        Specified by:
        getLocalValue in interface IPreferences
        Parameters:
        key - key for which the associated value is to be returned
        def - the value to be returned in the event that there is no value available associated with this key.
        Returns:
        the local value associated with key, or def if no value is associated with key, or the backing store is inaccessible. The value is read locally in the current preferences level.
        See Also:
        PortletPreferences.getValues(String, String[])
      • getLocalValues

        public String[] getLocalValues​(String key,
                                       String[] def)
        Description copied from interface: IPreferences
        Returns the String array value associated with the specified key in this preference. This preference is read locally in the current preferences level.

        Returns the specified default if there is no value associated with the key, or if the backing store is inaccessible. A null value is treated as a non-existent value.

        If the implementation supports stored defaults and such a default exists and is accessible, it is used in favor of the specified default.

        Specified by:
        getLocalValues in interface IPreferences
        Parameters:
        key - key for which associated value is to be returned.
        def - the value to be returned in the event that this preference node has no value associated with key or the associated value cannot be interpreted as a String array, or the backing store is inaccessible.
        Returns:
        the String array value associated with key, or def if the associated value does not exist. The value is read locally in the current preferences level.
        See Also:
        PortletPreferences.getValue(String,String)