|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jboss.portal.portlet.impl.jsr168.PortletPreferencesImpl
| Nested Class Summary | |
private class |
PortletPreferencesImpl.PreferencesMap
|
| Field Summary | |
static int |
ACTION
Indicates the object is used during a action phase. |
protected static org.apache.log4j.Logger |
log
The logger. |
protected int |
mode
. |
protected PropertyContext |
prefs
. |
static int |
RENDER
Indicates the object is used during a render phase. |
protected java.util.Map |
updates
Keep track of updates |
protected PreferencesValidator |
validator
. |
| Constructor Summary | |
PortletPreferencesImpl(PropertyContext prefs,
PreferencesValidator validator,
int mode)
|
|
| Method Summary | |
java.util.Map |
getMap()
Returns a Map of the preferences. |
java.util.Enumeration |
getNames()
Returns all of the keys that have an associated value, or an empty Enumeration if no keys are
available. |
private Value |
getValue(java.lang.String key)
|
java.lang.String |
getValue(java.lang.String key,
java.lang.String def)
Returns the first String value associated with the specified key of this preference. |
java.lang.String[] |
getValues(java.lang.String key,
java.lang.String[] def)
Returns the String array value associated with the specified key in this preference. |
boolean |
isReadOnly(java.lang.String key)
Returns true, if the value of this key cannot be modified by the user. |
void |
reset(java.lang.String key)
Resets or removes the value associated with the specified key. |
void |
setValue(java.lang.String key,
java.lang.String value)
Associates the specified String value with the specified key in this preference. |
void |
setValues(java.lang.String key,
java.lang.String[] values)
Associates the specified String array value with the specified key in this preference. |
void |
store()
Commits all changes made to the preferences via the set methods in the persistent store. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected static final org.apache.log4j.Logger log
public static final int ACTION
public static final int RENDER
protected final PropertyContext prefs
protected final PreferencesValidator validator
protected final int mode
protected final java.util.Map updates
| Constructor Detail |
public PortletPreferencesImpl(PropertyContext prefs, PreferencesValidator validator, int mode)
| Method Detail |
public java.util.Map getMap()
PortletPreferencesMap of the preferences.
The values in the returned Map are from type String array (String[]).
If no preferences exist this method returns an empty Map.
getMap in interface PortletPreferencesMap containing preference names as keys and preference values as map values, or
an empty Map if no preference exist. The keys in the preference map are of type String. The
values in the preference map are of type String array (String[]).public java.util.Enumeration getNames()
PortletPreferencesEnumeration if no keys are
available.
getNames in interface PortletPreferencesEnumeration if no keys
are available.private Value getValue(java.lang.String key)
public java.lang.String getValue(java.lang.String key,
java.lang.String def)
throws java.lang.IllegalArgumentException
PortletPreferences
getValue in interface PortletPreferenceskey - key for which the associated value is to be returneddef - the value to be returned in the event that there is no value available associated with this
key.
key, or def if no value is associated with
key, or the backing store is inaccessible.
java.lang.IllegalArgumentException - if key is null. (A null value for def is
permitted.)PortletPreferences.getValues(String,String[])
public java.lang.String[] getValues(java.lang.String key,
java.lang.String[] def)
throws java.lang.IllegalArgumentException
PortletPreferencesReturns the specified default if there is no value associated with the key, or if the backing store is inaccessible.
If the implementation supports stored defaults and such a default exists and is accessible, it is used in favor of the specified default.
getValues in interface PortletPreferenceskey - 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.
key, or def if the associated value does
not exist.
java.lang.IllegalArgumentException - if key is null. (A null value for def is
permitted.)PortletPreferences.getValue(String,String)
public boolean isReadOnly(java.lang.String key)
throws java.lang.IllegalArgumentException,
java.lang.IllegalArgumentException
PortletPreferencesEDIT, HELP, VIEW).
Per default every preference is modifiable.
Read-only preferences cannot be changed by the portlet in any standard portlet mode, but inside of custom modes it
may be allowed changing them. Preferences are read-only, if they are defined in the deployment descriptor with
read-only set to true, or if the portlet container restricts write access.
isReadOnly in interface PortletPreferencesjava.lang.IllegalArgumentException - if key is null.
public void reset(java.lang.String key)
throws java.lang.IllegalArgumentException,
ReadOnlyException
PortletPreferences
reset in interface PortletPreferenceskey - to reset
java.lang.IllegalArgumentException - if key is null.
ReadOnlyException - if this preference cannot be modified for this request
public void setValue(java.lang.String key,
java.lang.String value)
throws java.lang.IllegalArgumentException,
ReadOnlyException
PortletPreferencesnull, but null values for the value parameter are allowed.
setValue in interface PortletPreferenceskey - key with which the specified value is to be associated.value - value to be associated with the specified key.
ReadOnlyException - if this preference cannot be modified for this request
java.lang.IllegalArgumentException - if key is null, or key.length() or value.length
are to long. The maximum length for key and value are implementation specific.PortletPreferences.setValues(String,String[])
public void setValues(java.lang.String key,
java.lang.String[] values)
throws java.lang.IllegalArgumentException,
ReadOnlyException
PortletPreferencesnull, but null values in the values parameter are allowed.
setValues in interface PortletPreferenceskey - key with which the value is to be associatedvalues - values to be associated with key
ReadOnlyException - if this preference cannot be modified for this request
java.lang.IllegalArgumentException - if key is null, or key.length() is to long or
value.size is to large. The maximum length for key and maximum size for
value are implementation specific.PortletPreferences.setValue(String,String)
public void store()
throws java.io.IOException,
ValidatorException
PortletPreferencesset methods in the persistent store.
If this call returns succesfull, all changes are made persistent. If this call fails, no changes are made in the
persistent store. This call is an atomic operation regardless of how many preference attributes have been
modified.
All changes made to preferences not followed by a call to the store method are discarded when the
portlet finishes the processAction method.
If a validator is defined for this preferences in the deployment descriptor, this validator is called before the
actual store is performed to check wether the given preferences are vaild. If this check fails a
ValidatorException is thrown.
store in interface PortletPreferencesjava.io.IOException - if changes cannot be written into the backend store
ValidatorException - if the validation performed by the associated validator failsPreferencesValidator
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||