| com.sun.portal.providers.service.provision.ProviderProvisionProperties
All known Subclasses: com.sun.portal.service.provider.impl.DPProviderProvisionPropertiesImpl,
ProviderProvisionProperties | public interface ProviderProvisionProperties (Code) | | ProviderProvisionPreferences is an interface that can be used
by the developer to set and get properties
for a provider instance. It shows the same properties that
can be set through amconsole or taskadmin on a provider channel.
author: mjain |
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
for the given channel name. | public String | getStringProperty(String key, List pflist) Return the value for channel String property. | public void | setBooleanProperty(String key, boolean value, List pflist) This method sets the value for the given
boolean property. | public void | setIntegerProperty(String key, int value, List pflist) This method sets the integer object for the given
integer property. | public void | setListProperty(String key, List value, List pflist) This method sets the List value object for the given
List property. | public void | setMapProperty(String key, Map value, List pflist) This method sets the Map collection object for the given
collection property. | public void | setStringProperty(String key, String value, List pflist) This method sets the value for the given
string property. |
getBooleanProperty | public boolean getBooleanProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | Return the value for channel's boolean property.
Parameters: key - property name Parameters: pflist - properties filter list value of the boolean property. throws: ProvisionPreferencesException - |
getIntegerProperty | public int getIntegerProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | Return the value for channel integer property.
Parameters: key - property name Parameters: pflist - properties filter list value of the integer property. throws: ProvisionPreferencesException - |
getListProperty | public List getListProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method returns the List collection object for the given
collection property.
Parameters: key - property name Parameters: pflist - throws: ProvisionPreferencesException - |
getMapProperty | public Map getMapProperty(String key, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method returns the Map collection object for the given
collection property.
Parameters: key - property name Parameters: pflist - throws: ProvisionPreferencesException - |
getPropertyNames | public Set getPropertyNames(boolean advanced) throws ProviderProvisionPropertiesException(Code) | | This method returns the list of property names that are existing
for the given channel name. This method
returns only the default property names and filters out all the conditional
properties.
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: key - property name Parameters: pflist - properties filter list Value of the string property. throws: ProvisionPreferencesException - |
setBooleanProperty | public void setBooleanProperty(String key, boolean value, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method sets the value for the given
boolean property.
Parameters: key - property name Parameters: pflist - throws: ProvisionPreferencesException - |
setIntegerProperty | public void setIntegerProperty(String key, int value, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method sets the integer object for the given
integer property.
Parameters: key - property name Parameters: pflist - throws: ProvisionPreferencesException - |
setListProperty | public void setListProperty(String key, List value, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method sets the List value object for the given
List property.
Parameters: key - property name Parameters: pflist - throws: ProvisionPreferencesException - |
setMapProperty | public void setMapProperty(String key, Map value, List pflist) throws ProviderProvisionPropertiesException(Code) | | This method sets the Map collection object for the given
collection property.
Parameters: key - property name Parameters: pflist - throws: ProvisionPreferencesException - |
|
|