| java.lang.Object com.sun.portal.service.provider.impl.DPProviderProvisionPropertiesImpl
Method Summary | |
public boolean | getBooleanProperty(String key, List pflist) Return the value for channel's boolean property. | public int | getIntegerProperty(String key, List pflist) Return the value for channel integer property. | public List | getListProperty(String key, List pflist) This method returns the List collection object for the given
collection property. | public Map | getMapProperty(String key, List pflist) This method returns the Map collection object for the given
collection property. | public Set | getPropertyNames(boolean advanced) This method returns the list of property names that are existing
at the baseDN and at the given channel name that is passed in. | public String | getStringProperty(String key, List pflist) Return the value for channel String property. | public void | setBooleanProperty(String key, boolean value, List pflist) | public void | setIntegerProperty(String key, int value, List pflist) | public void | setListProperty(String key, List value, List pflist) | public void | setMapProperty(String key, Map value, List pflist) | public void | setStringProperty(String key, String value, List pflist) |
getBooleanProperty | public boolean getBooleanProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | Return the value for channel's boolean property.
Parameters: channelName - channel name. Parameters: key - property name Parameters: pflist - properties filter list value of the boolean property. throws: ProviderProvisionPreferencesException - |
getIntegerProperty | public int getIntegerProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | Return the value for channel integer property.
Parameters: channelName - channel name. Parameters: key - property name Parameters: pflist - properties filter list value of the integer property. throws: ProviderProvisionPreferencesException - |
getListProperty | public List getListProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method returns the List collection object for the given
collection property.
Parameters: channelName - channel name. Parameters: key - property name Parameters: pflist - throws: ProviderProvisionPreferencesException - |
getMapProperty | public Map getMapProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method returns the Map collection object for the given
collection property.
Parameters: channelName - channel name. Parameters: key - property name Parameters: pflist - throws: ProviderProvisionPreferencesException - |
getPropertyNames | public Set getPropertyNames(boolean advanced) throws ProviderProvisionPropertiesException(Code) | | This method returns the list of property names that are existing
at the baseDN and at the given channel name that is passed in. This method
returns only the default property names and filters out all the conditional
properties.
Parameters: channelName - the channel name for which property names list to be returned. Parameters: advanced - advanced flag to specify whether to return basic/advanced propertynames. Set Contaning property name list. |
getStringProperty | public String getStringProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | Return the value for channel String property.
Parameters: channelName - channel name. Parameters: key - property name Parameters: pflist - properties filter list Value of the string property. throws: ProviderProvisionPreferencesException - |
|
|