Package com.axemble.vdoc.sdk.interfaces
Interface IPluginRequest
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- EzsPluginRequest
The plugin request interface.
- Since:
- 2.0, 02/02/2010
- Author:
- vlygeros
- 
Method SummaryModifier and TypeMethodDescriptionConverts the inner value to a string.getParameterValue(String key) Gets a parameter by its key.String[]getParameterValues(String key) Gets all the values associated with a key.Gets the requested string.Gets the requested URIGets the requested URLvoidsetParameterValue(String key, String value) Sets the value for the specified parameter.voidsetParameterValues(String key, String[] values) Sets the values associated with a key.
- 
Method Details- 
getRequestURLString getRequestURL()Gets the requested URL- Returns:
- A java.lang.String value.
 
- 
getRequestURIString getRequestURI()Gets the requested URI- Returns:
- A java.lang.String value.
 
- 
getQueryStringString getQueryString()Gets the requested string.- Returns:
- The requested string as a java.lang.String object.
 
- 
getParameterValueGets a parameter by its key.- Parameters:
- key- The key of the parameter.
- Returns:
- The parameter associated with the key.
 
- 
setParameterValueSets the value for the specified parameter.- Parameters:
- key- The key of the parameter.
- value- The value of the parameter.
 
- 
getParameterValuesGets all the values associated with a key.- Parameters:
- key- The key of the parameters.
- Returns:
- All the values associated with the key.
 
- 
setParameterValuesSets the values associated with a key.- Parameters:
- key- The key of the parameter.
- values- The values to set.
 
- 
convertToStringString convertToString()Converts the inner value to a string.- Returns:
- a java.lang.String value.
 
 
-